Skip to content

Commit

Permalink
ignore legacy deps (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinMacaulay authored Dec 14, 2023
1 parent 14c9da6 commit 59a241a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roadside-forms-frontend/frontend_web_app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ENV REACT_APP_GIT_COMMIT_HASH=$REACT_APP_GIT_COMMIT_HASH
USER root
WORKDIR /app
COPY package*.json ./
RUN npm install
RUN npm install --legacy-peer-deps
COPY . .
RUN ls -a

Expand Down
2 changes: 1 addition & 1 deletion roadside-forms-frontend/frontend_web_app/Dockerfile-local
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ENV REACT_APP_BASE_URL=$REACT_APP_BASE_URL
ENV REACT_APP_API_BASE_URL=$REACT_APP_API_BASE_URL
WORKDIR /app
COPY package*.json ./
RUN npm install
RUN npm install --legacy-peer-deps
COPY . .
RUN ls -a

Expand Down

0 comments on commit 59a241a

Please sign in to comment.