docker-breezewiki-quay/docker/Dockerfile
TheFrenchGhosty 7c375197d3
Fix the build
2023-10-14 15:15:52 +02:00

12 lines
438 B
Docker

FROM debian:stable-slim
WORKDIR /app
RUN apt update
&& apt install -y --no-install-recommends git racket ca-certificates curl sqlite3 \
&& apt autoclean -y \
&& apt autoremove -y \
&& rm -rf /var/lib/apt/lists/* \
&& git clone --depth=1 https://gitdab.com/cadence/breezewiki.git . \
&& raco pkg install --batch --auto --no-docs --skip-installed req-lib \
&& raco req -d
EXPOSE 10416
CMD ["racket", "dist.rkt"]