Gaston895 commited on
Commit
23d2654
·
verified ·
1 Parent(s): 3737f67

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -8,13 +8,13 @@ RUN apt-get update && apt-get install -y \
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
  # Copy requirements first for better caching
11
- COPY flask_requirements.txt requirements.txt
12
 
13
  # Install Python dependencies
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
  # Copy application files
17
- COPY flask_chat_app.py app.py
18
  COPY templates/ templates/
19
 
20
  # Expose port
 
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
  # Copy requirements first for better caching
11
+ COPY requirements.txt .
12
 
13
  # Install Python dependencies
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
  # Copy application files
17
+ COPY app.py .
18
  COPY templates/ templates/
19
 
20
  # Expose port