Skip to content

Commit

Permalink
Typo in cwd location
Browse files Browse the repository at this point in the history
  • Loading branch information
dbouget committed Oct 5, 2023
1 parent 5f1021f commit 2973690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH

# Set the working directory to the user's home directory
WORKDIR $HOME
WORKDIR $HOME/app

# Copy the current directory contents into the container at $HOME/app setting the owner to the user
COPY --chown=user . $HOME
COPY --chown=user . $HOME/app

# Download pretrained models
RUN mkdir -p resources/models/
Expand Down

0 comments on commit 2973690

Please sign in to comment.