mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-12-08 00:45:29 +01:00
5 lines
94 B
Docker
5 lines
94 B
Docker
FROM pypy:3.10-bookworm
|
|
WORKDIR /usr/src/application
|
|
COPY ./ ./
|
|
CMD ["python", "solution.py"]
|