This commit is contained in:
TheFrenchGhosty 2023-03-05 12:45:16 +01:00
parent 16b9e2aba8
commit d6e7eb609a
No known key found for this signature in database
GPG key ID: 4E616F0FFE25B75B

View file

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