test33 / Dockerfile
yxmiler's picture
Update Dockerfile
cde12d6 verified
raw
history blame contribute delete
198 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN pip install --no-cache-dir flask flask-cors requests python-dotenv werkzeug
COPY . .
ENV PORT=7860
ENV MAX_WORKERS=20
EXPOSE 7860
CMD ["python", "app.py"]