insurance_analytics / Dockerfile
Omkar008's picture
Create Dockerfile
11c6d53 verified
raw
history blame
No virus
338 Bytes
FROM python:3.12.5
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
RUN useradd -m -u 1000 user
USER user
# Copy the rest of the application code into the container at /app
COPY --chown=user . /app/
# Command to run your application
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860" , "--workers" , "5"]