sentimetry-api / Dockerfile
riu-rd's picture
Update Dockerfile
dd75821 verified
raw
history blame
461 Bytes
FROM python:3.11.8
WORKDIR /
COPY requirements.txt ./
RUN pip install --no-cache-dir -r /requirements.txt
# Add user with appropriate permissions
RUN useradd -m -u 1000 user
# Create app directory and grant access
RUN mkdir -p /home/user/app && chmod -R 777 /home/user
USER user
ENV HOME=/home/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"]