AurelioAguirre commited on
Commit
9bbec6e
·
1 Parent(s): 7974909

New Dockerfile, still dummy app, testing minimal req file. v3

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -4,7 +4,7 @@ FROM python:3.10-slim
4
  WORKDIR /app
5
 
6
  # Copy requirements first to leverage Docker cache
7
- COPY _requirements.txt .
8
 
9
  # Install dependencies
10
  RUN pip install --no-cache-dir -r requirements.txt
 
4
  WORKDIR /app
5
 
6
  # Copy requirements first to leverage Docker cache
7
+ COPY requirements.txt .
8
 
9
  # Install dependencies
10
  RUN pip install --no-cache-dir -r requirements.txt