Initial commit

This commit is contained in:
Leigh Morresi
2021-01-27 12:39:46 +01:00
commit ec3f34804f
16 changed files with 333 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM python:3.8-buster
RUN mkdir -p /app/dev
COPY sleep.py /
CMD [ "python", "/sleep.py" ]