Dockerfile

This commit is contained in:
2025-11-23 15:53:10 -05:00
parent 941114f13c
commit 1575ee2bec
3 changed files with 11 additions and 2 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.10
WORKDIR /usr/local/app
COPY . .
RUN pip install --no-cache-dir --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python3", "bot.py"]