mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-12-13 03:25:45 +00:00
8 lines
94 B
Docker
8 lines
94 B
Docker
FROM python:3.8-buster
|
|
RUN mkdir -p /app/dev
|
|
COPY sleep.py /
|
|
CMD [ "python", "/sleep.py" ]
|
|
|
|
|
|
|