robinroy03's picture
dockerfile and main.py
6c36793
raw
history blame
183 Bytes
FROM python
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
CMD ["gunicorn", "-w", "1", "main:app"]