10 lines
248 B
Docker
10 lines
248 B
Docker
|
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
|