Remove the mkdir because it's not needed anymore

This commit is contained in:
TheFrenchGhosty 2023-03-12 14:52:47 +01:00
parent d6e7eb609a
commit bf7dd712e1
No known key found for this signature in database
GPG key ID: 4E616F0FFE25B75B

View file

@ -7,7 +7,6 @@ RUN apt update -y && apt upgrade -y \
&& rm -rf /var/lib/apt/lists/* \ && rm -rf /var/lib/apt/lists/* \
&& git clone --depth=1 https://gitdab.com/cadence/breezewiki.git . \ && git clone --depth=1 https://gitdab.com/cadence/breezewiki.git . \
&& raco pkg install --batch --auto --no-docs --skip-installed req-lib \ && raco pkg install --batch --auto --no-docs --skip-installed req-lib \
&& raco req -d \ && raco req -d
&& mkdir /app/storage
EXPOSE 10416 EXPOSE 10416
CMD ["racket", "dist.rkt"] CMD ["racket", "dist.rkt"]