oai / Dockerfile
yangtb24's picture
Create Dockerfile
cf2a013 verified
raw
history blame
157 Bytes
FROM python:3.9-slim-buster
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
CMD ["gunicorn", "app:app"]