Skip to content

Commit

Permalink
Trying to resolve npm install issue on containers
Browse files Browse the repository at this point in the history
  • Loading branch information
null committed Apr 19, 2024
1 parent 46ed559 commit 88f8584
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app
COPY . .

RUN npm install -g @angular/cli@17
RUN npm cache clean
RUN npm cache clean --force
RUN npm update
RUN npm install --force

Expand Down
2 changes: 1 addition & 1 deletion podman/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app
COPY . .

RUN npm install -g @angular/cli@17
RUN npm cache clean
RUN npm cache clean --force
RUN npm update
RUN npm install --force

Expand Down

0 comments on commit 88f8584

Please sign in to comment.