sqlbot / Dockerfile
barathm2001's picture
Upload 2 files
3b3454e verified
raw
history blame
567 Bytes
FROM python:3.10
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
# Upgrade pip before installing requirements
RUN pip install --no-cache-dir --upgrade pip
# Install dependencies
RUN pip install --no-cache-dir -r /code/requirements.txt
# Create and use non-root user
RUN useradd -m user
USER user
# Set environment variables
ENV HOME=/home/user \
PATH=/home/user/.local/bin:${PATH}
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
# Run the application
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]