backoffice / Dockerfile
Jhon Alexander Alvarez Casas
update files
1e620ea
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"]