thesis-deployment / Dockerfile
Avril Lalaine
Add flask app with dockerfire
0ad9aa8
raw
history blame
136 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8080
CMD ["python", "app.py"]