Spaces:
Sleeping
Sleeping
Commit
·
2c71ef2
1
Parent(s):
2ee7dcf
copying the entire app directory
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -18,6 +18,10 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
18 |
# Again, ensure the copied files are owned by 'user'
|
19 |
COPY --chown=user . /app
|
20 |
|
|
|
|
|
|
|
|
|
21 |
# Add a debug command to check file location (remove this once verified)
|
22 |
RUN ls -l /app
|
23 |
|
|
|
18 |
# Again, ensure the copied files are owned by 'user'
|
19 |
COPY --chown=user . /app
|
20 |
|
21 |
+
# Make sure that you are copying the entire app directory into the container
|
22 |
+
COPY --chown=user ./app /app
|
23 |
+
|
24 |
+
|
25 |
# Add a debug command to check file location (remove this once verified)
|
26 |
RUN ls -l /app
|
27 |
|