write-ups-challenges-2024-2025/snake-safe/Dockerfile
2024-11-25 22:33:02 +01:00

7 lines
183 B
Docker

FROM ubuntu:20.04
RUN apt-get update && apt-get install -y python3 python3-pip
RUN pip3 install pyinstaller
COPY safe.py ./safe.py
RUN pyinstaller -F ./safe.py
CMD ["sleep", "10000"]