research / Dockerfile
mfoud444's picture
Update Dockerfile
baabedc verified
raw
history blame contribute delete
853 Bytes
FROM python:3.12-slim
# Install system dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
git \
pandoc \
&& rm -rf /var/lib/apt/lists/*
# Create and switch to user
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
ENV PYTHONPATH=/app
ENV GUNICORN_CMD_ARGS="--timeout 600 --keep-alive 60"
# Set up working directory
WORKDIR /app
# Clone the repository (instead of COPY)
RUN git clone https://github.com/mfoud444/research.git /app
# Install Python dependencies
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir --upgrade -r requirements.txt && \
pip install --no-cache-dir --upgrade g4f[all]
# Expose port
EXPOSE 7860
# Run the application
CMD ["gunicorn", "--workers", "3", "--bind", "0.0.0.0:7860", "--worker-class", "gevent", "app:app"]