Spaces:
Sleeping
Sleeping
Update Dockerfile to copy source code to the current directory with appuser ownership
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -41,7 +41,7 @@ RUN python -m pip install --upgrade pip \
|
|
41 |
&& pip install -r requirements.txt
|
42 |
|
43 |
# Copy the source code into the container.
|
44 |
-
COPY --chown=appuser .
|
45 |
|
46 |
# Expose the port that the application listens on.
|
47 |
EXPOSE 7860
|
|
|
41 |
&& pip install -r requirements.txt
|
42 |
|
43 |
# Copy the source code into the container.
|
44 |
+
COPY --chown=appuser . .
|
45 |
|
46 |
# Expose the port that the application listens on.
|
47 |
EXPOSE 7860
|