TestAPI / Dockerfile
pawanmau01's picture
Update Dockerfile for dill
9b0f67b verified
raw
history blame
818 Bytes
# Use an official Python 3.12 runtime as a parent image
FROM python:3.12
# Set the working directory in the container
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
libgl1-mesa-glx \
&& rm -rf /var/lib/apt/lists/*
# Install dill package
RUN pip install dill
# Copy the requirements.txt file into the container
COPY requirements.txt /app/requirements.txt
# Install the required Python packages
RUN pip install --no-cache-dir -r /app/requirements.txt
# Copy the rest of the application code into the container
COPY . /app
# Set environment variables
ENV FLASK_APP=run.py
ENV FLASK_ENV=production
ENV YOLO_CONFIG_DIR=/tmp
# Expose the port the app runs on
EXPOSE 7860
# Define the command to run the application
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "run:app"]