File size: 1,331 Bytes
f5dcbff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
FROM python:3.11

# Create and use a non-root user (optional)
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"

# Set working directory
WORKDIR /app

# Copy all project files to the container
COPY . .

# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt

# Verify CSV file is present and accessible
RUN ls -la /app/utils/symbipredict_2022.csv || echo "CSV file not found"

# Test CSV loading in Docker environment
RUN python /app/test_docker_csv.py

# Clean up test file
RUN rm /app/test_docker_csv.py

# Set Hugging Face cache directory to persist model downloads
ENV HF_HOME="/home/user/.cache/huggingface"
ENV SENTENCE_TRANSFORMERS_HOME="/home/user/.cache/huggingface/sentence-transformers"
ENV MEDGEMMA_HOME="/home/user/.cache/huggingface/sentence-transformers"

# Create cache directories and ensure permissions
RUN mkdir -p /app/model_cache /home/user/.cache/huggingface/sentence-transformers && \
    chown -R user:user /app/model_cache /home/user/.cache/huggingface

# Pre-load model in a separate script
RUN python /app/models/download_model.py && python /app/models/warmup.py

# Ensure ownership and permissions remain intact
RUN chown -R user:user /app/model_cache

# Expose port
EXPOSE 7860

# Run the application using main.py as entry point
CMD ["python", "main.py"]