safety_classifier / Dockerfile
riu-rd's picture
Upload Dockerfile
c933592 verified
raw
history blame
675 Bytes
FROM python:3.9.18
WORKDIR /
# Copy requirements.txt to the container
COPY requirements.txt ./
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Add a non-root user to run the application
RUN useradd -m -u 1000 user
# Set the user and home directory environment variables
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Create the application directory
WORKDIR $HOME/app
# Copy the application code and model files
COPY --chown=user . $HOME/app/
# Expose the port the FastAPI app runs on
EXPOSE 7860
# Command to run the FastAPI app
CMD ["uvicorn", "safety_classifier:app", "--host", "0.0.0.0", "--port", "7860"]