Sk4467 commited on
Commit
9a61fbf
·
verified ·
1 Parent(s): c1827d2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -8,8 +8,8 @@ FROM python:3.11.5-bookworm
8
  WORKDIR /app
9
 
10
  # Install requirements.txt
11
- COPY requirements.txt .
12
- RUN pip install --no-cache-dir --upgrade -r /requirements.txt
13
 
14
  # Copy the current directory contents into the container at .
15
  COPY . .
 
8
  WORKDIR /app
9
 
10
  # Install requirements.txt
11
+ COPY requirements.txt /app
12
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
13
 
14
  # Copy the current directory contents into the container at .
15
  COPY . .