d5739b6
1
2
3
4
5
6
7
FROM python:3.11-slim WORKDIR /app COPY main.py . RUN chmod -R 777 /app ENV SERVER_PORT=7860 CMD ["python", "main.py"]