samanthakarungi commited on
Commit
2da70ee
1 Parent(s): b3db375

Update Docker file

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,10 +2,10 @@
2
  FROM python:3.12.0
3
 
4
  # Copy the current directory contents into the container at .
5
- COPY . .
6
 
7
  # Set the working directory to /
8
- WORKDIR /
9
 
10
  # Install requirements.txt
11
  RUN pip install --no-cache-dir --upgrade -r /requirements.txt
 
2
  FROM python:3.12.0
3
 
4
  # Copy the current directory contents into the container at .
5
+ COPY . /app
6
 
7
  # Set the working directory to /
8
+ WORKDIR /app
9
 
10
  # Install requirements.txt
11
  RUN pip install --no-cache-dir --upgrade -r /requirements.txt