Spaces:
Sleeping
Sleeping
File size: 1,012 Bytes
44a025a 605edb2 44a025a 605edb2 44a025a |
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 |
FROM python:3.9-slim
WORKDIR /app
# Copy requirements first for better caching
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application
COPY . .
# Create necessary directories with proper permissions
RUN mkdir -p /app/data /app/temp /tmp/huggingface-cache && \
chmod -R 777 /app/data /app/temp /tmp/huggingface-cache && \
chown -R 1000:1000 /app/data /app/temp /tmp/huggingface-cache
# Set environment variables for cache locations
ENV TRANSFORMERS_CACHE=/tmp/huggingface-cache
ENV HF_HOME=/tmp/huggingface-cache
ENV SENTENCE_TRANSFORMERS_HOME=/tmp/huggingface-cache
# Expose the port that the app will run on
EXPOSE 7860
# Set environment variables for Hugging Face Spaces
ENV PYTHONUNBUFFERED=1
ENV HOST=0.0.0.0
ENV PORT=7860
# Switch to non-root user for better security
RUN useradd -m -u 1000 appuser
USER appuser
# Command to run the application
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |