initial working dockerfile

This commit is contained in:
2022-04-03 13:17:05 -04:00
parent bb6daef04b
commit 2eebcae901

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3
WORKDIR telegram-moviebot
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "telegram-moviebot/telegram-moviebot.py" ]