mirror of
https://github.com/Veridise/Picus.git
synced 2026-04-19 03:00:11 -04:00
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.
9 lines
135 B
Docker
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" ]
|