docker-breezewiki-quay/docker/Dockerfile

13 lines
438 B
Text
Raw Normal View History

FROM debian:stable-slim
2022-09-04 13:07:25 +00:00
WORKDIR /app
2023-10-14 13:15:52 +00:00
RUN apt update
&& apt install -y --no-install-recommends git racket ca-certificates curl sqlite3 \
2022-09-04 13:07:25 +00:00
&& 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
2022-09-04 13:07:25 +00:00
EXPOSE 10416
2022-09-04 13:08:08 +00:00
CMD ["racket", "dist.rkt"]