Files
Picus/Dockerfile
sorawee 10109dbbe2 docker: build compiled files (#56)
When built locally, Picus often fails to run due to the mismatch of the
compiled files in the newer, local Racket version, and the older,
image-based Racket version. This commit fixes the issue.
2023-10-11 09:02:35 -05:00

9 lines
135 B
Docker

FROM veridise/picus:base
# copy current version of Picus
COPY ./ /Picus/
WORKDIR /Picus/
RUN raco make picus.rkt
CMD [ "/bin/bash" ]