picpilot-server / Dockerfile
VikramSingh178's picture
chore: Update Dockerfile to use --no-cache-dir option for pip install
f9ed461
raw
history blame
750 Bytes
# Use the official Python base image
FROM python:3.10-slim
# Set the initial working directory
WORKDIR /app
# Copy the requirements.txt file from the api directory
COPY ../api/requirements.txt ./
# Install dependencies specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Create a non-root user and set up the environment
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Set the final working directory
WORKDIR $HOME/app
# Copy the entire project into the container, setting the appropriate ownership
COPY --chown=user . $HOME/app
# Set the working directory to /home/user/app/api
WORKDIR $HOME/app/api
# Command to run the API
CMD ["python", "endpoints.py"]