eaedk's picture
permission
6a4cd32
raw
history blame
396 Bytes
FROM python:3.9
#-slim
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
# Switch to the "user" user
USER user
WORKDIR /app
COPY --chown=user requirements.txt ./
RUN pip install -r requirements.txt
EXPOSE 7860
COPY --chown=user . .
RUN mkdir -p ./.cache
RUN chmod 777 ./.cache
CMD ["uvicorn", "src.main_sentiment:app", "--host", "0.0.0.0", "--port", "7860"]