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