Skip to content

Commit

Permalink
Only rely on docker chmod
Browse files Browse the repository at this point in the history
  • Loading branch information
BronzBierd committed Jan 21, 2025
1 parent 6cef507 commit 6e6379c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/web/Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ WORKDIR /opt/app-root/src
COPY --chmod=674 ${WEB_SRC}/package*.json .

# NPM INSTALL fails as root, this is due to a legacy SCSS package, this is not required in VUE3 (REMOVE WHEN UPGRADING)
USER 104
# USER 104
# Install packages
RUN npm install ${NPM_INSTALL_ARGS}
# NPM INSTALL fails as root, this is due to a legacy SCSS package, this is not required in VUE3 (REMOVE WHEN UPGRADING)
USER root
# USER root

# Copy the source code
COPY --chmod=674 ${WEB_SRC} .
Expand Down

0 comments on commit 6e6379c

Please sign in to comment.