File size: 346 Bytes
fa20fa2
 
 
 
 
1e620ea
8779be3
fa20fa2
1
2
3
4
5
6
7
8
9
FROM python:3.11.3
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
RUN ln -snf /usr/share/zoneinfo/America/Lima /etc/localtime && echo America/Lima > /etc/timezone
RUN chmod -R ugo+rw /code
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]