Gaston895 commited on
Commit
478914f
·
verified ·
1 Parent(s): 87ebeef

Update Dockerfile - AEGIS BIO LAB 10 CONDUCTOR

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -8,11 +8,11 @@ RUN apt-get update && apt-get install -y \
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
  # Copy requirements and install Python dependencies
11
- COPY requirements_deepseek_multi_provider.txt .
12
- RUN pip install --no-cache-dir -r requirements_deepseek_multi_provider.txt
13
 
14
  # Copy application files
15
- COPY flask_chat_app_quantized.py app.py
16
  COPY templates/ templates/
17
 
18
  # Create environment file template
 
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
  # Copy requirements and install Python dependencies
11
+ COPY requirements.txt .
12
+ RUN pip install --no-cache-dir -r requirements.txt
13
 
14
  # Copy application files
15
+ COPY app.py .
16
  COPY templates/ templates/
17
 
18
  # Create environment file template