Update DockerFile
Browse files- 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 /
|
| 9 |
|
| 10 |
# Copy app files
|
| 11 |
-
COPY . /
|
| 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
|