7 lines
74 B
Docker
Raw Normal View History

2024-12-11 21:51:40 +04:00
FROM python:3.9-slim
WORKDIR /app
COPY . /app
CMD ["python", "main.py"]