Gk2 / Dockerfile
yxmiler's picture
Update Dockerfile
255f6ca verified
raw
history blame
185 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r flask flask_cors curl_cffi
COPY . .
ENV PORT=5200
EXPOSE 5200
CMD ["python", "app.py"]