sub / Dockerfile
sfun's picture
Create Dockerfile
06fd806 verified
raw
history blame
No virus
130 Bytes
FROM python:3.9-slim
WORKDIR /app
RUN pip install --no-cache-dir flask requests
COPY . .
EXPOSE 8080
CMD ["python", "app.py"]