containerize the app
This commit is contained in:
parent
9348af5e4a
commit
f4d53e0fb6
1 changed files with 9 additions and 0 deletions
9
Dockerfile
Normal file
9
Dockerfile
Normal 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
|
Loading…
Reference in a new issue