sentimetry-api / Dockerfile
riu-rd's picture
Create Dockerfile
0aa5522 verified
raw
history blame
328 Bytes
FROM python:3.11.8
WORKDIR /
COPY requirements.txt ./
RUN pip install --no-cache-dir -r /requirements.txt
RUN useradd -m -u 1000 useradd
USER user
ENV HOME=/homee/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app/
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]