Jakecole1 commited on
Commit
6e82ac7
·
verified ·
1 Parent(s): c4cd83a

Update DockerFile

Browse files
Files changed (1) hide show
  1. DockerFile +2 -2
DockerFile CHANGED
@@ -5,10 +5,10 @@ FROM python:3.10
5
  RUN apt-get update && apt-get install -y poppler-utils
6
 
7
  # Set working directory
8
- WORKDIR /app
9
 
10
  # Copy app files
11
- COPY . /app
12
 
13
  # Install Python dependencies
14
  RUN pip install -r requirements.txt
 
5
  RUN apt-get update && apt-get install -y poppler-utils
6
 
7
  # Set working directory
8
+ WORKDIR /main
9
 
10
  # Copy app files
11
+ COPY . /main
12
 
13
  # Install Python dependencies
14
  RUN pip install -r requirements.txt