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