Spaces:
Sleeping
Sleeping
dbouget
commited on
Commit
·
2973690
1
Parent(s):
5f1021f
Typo in cwd location
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -47,10 +47,10 @@ ENV HOME=/home/user \
|
|
| 47 |
PATH=/home/user/.local/bin:$PATH
|
| 48 |
|
| 49 |
# Set the working directory to the user's home directory
|
| 50 |
-
WORKDIR $HOME
|
| 51 |
|
| 52 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 53 |
-
COPY --chown=user . $HOME
|
| 54 |
|
| 55 |
# Download pretrained models
|
| 56 |
RUN mkdir -p resources/models/
|
|
|
|
| 47 |
PATH=/home/user/.local/bin:$PATH
|
| 48 |
|
| 49 |
# Set the working directory to the user's home directory
|
| 50 |
+
WORKDIR $HOME/app
|
| 51 |
|
| 52 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 53 |
+
COPY --chown=user . $HOME/app
|
| 54 |
|
| 55 |
# Download pretrained models
|
| 56 |
RUN mkdir -p resources/models/
|