12 lines
438 B
Docker
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"]
|