Spaces:
Running
Running
File size: 808 Bytes
4430ebb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# Use an official Python runtime as a parent image
FROM python:3.11-slim
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
ENV PORT 7860
# Set work directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
libpq-dev \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
# Copy project
COPY . /app/
# Create a non-root user and switch to it
# Hugging Face Spaces uses user 1000
RUN useradd -m -u 1000 user
RUN chown -R user:user /app
USER user
# Create necessary directories
RUN mkdir -p /app/logs /app/media /app/static
# Expose the port Hugging Face expects
EXPOSE 7860
# Run the application
CMD ["./start.sh"]
|