containerize the app

This commit is contained in:
sorrel 2023-12-17 18:30:33 -05:00
parent 9348af5e4a
commit f4d53e0fb6

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM debian:bookworm-slim
COPY . .
RUN rm -rf data/
RUN rm -rf in-progress
RUN apt update
RUN apt -yq install racket ca-certificates
RUN yes Y | raco pkg install --no-docs csv-reading
RUN raco exe sorrel.dev.rkt
RUN raco distribute dist sorrel.dev