thedamn commited on
Commit
292afa9
·
1 Parent(s): 639796f
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -1,6 +1,7 @@
1
  # Use an official Ubuntu base image
2
  FROM ubuntu:latest
3
 
 
4
  # Update the package lists
5
  RUN apt-get update
6
 
@@ -9,9 +10,6 @@ RUN apt-get install -y grep git python3 python3-pip
9
 
10
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
12
- # Set the working directory in the container
13
- WORKDIR /app
14
-
15
  # Copy the rest of your application files
16
  COPY . .
17
 
 
1
  # Use an official Ubuntu base image
2
  FROM ubuntu:latest
3
 
4
+ WORKDIR /code
5
  # Update the package lists
6
  RUN apt-get update
7
 
 
10
 
11
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
 
 
 
 
13
  # Copy the rest of your application files
14
  COPY . .
15