diplom / Dockerfile
Arghet6's picture
Upload 9 files
9b6a9d7 verified
raw
history blame
131 Bytes
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["gunicorn", "--bind", "0.0.0.0:8080", "app:app"]