Spaces:
Runtime error
Runtime error
File size: 1,248 Bytes
4d1131a |
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 40 41 42 43 44 45 46 47 48 49 50 |
# Use Python 3.9 slim image
FROM python:3.9-slim
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Create necessary directories and set permissions
RUN mkdir -p /tmp/huggingface && \
chmod -R 777 /tmp/huggingface
# Create a non-root user
RUN useradd -m -s /bin/bash user && \
chown -R user:user /tmp/huggingface
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Set working directory
WORKDIR $HOME/app
# Create app directories
RUN mkdir -p $HOME/app/session_data $HOME/app/session_summaries $HOME/app/vector_db $HOME/app/models
# Copy requirements first for better caching
COPY --chown=user:user requirements.txt .
RUN pip install --user --no-cache-dir -r requirements.txt
# Copy the rest of the application
COPY --chown=user:user . .
# Make start.sh executable
RUN chmod +x start.sh
# Set environment variables
ENV PORT=7860
ENV TRANSFORMERS_CACHE=/tmp/huggingface
ENV HF_HOME=/tmp/huggingface
ENV TOKENIZERS_PARALLELISM=false
ENV TRANSFORMERS_VERBOSITY=error
ENV BITSANDBYTES_NOWELCOME=1
# Expose the port
EXPOSE 7860
# Run the application using start.sh
CMD ["./start.sh"]
|