Add some docker shit

This commit is contained in:
2024-07-31 20:01:55 -03:00
parent c533330f1a
commit c9f7ab8f92
6 changed files with 57 additions and 9 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3.11.9-alpine
# Set the working directory
WORKDIR /app
COPY . /app
CMD ["python", "download.py"]