Skip to content

Commit

Permalink
Circle CI Fix
Browse files Browse the repository at this point in the history
Circle CI Fix
  • Loading branch information
ShahanaFarooqui committed Dec 23, 2022
1 parent 27d210c commit 2b32f96
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WORKDIR /RTL
COPY package.json /RTL/package.json
COPY package-lock.json /RTL/package-lock.json

RUN npm install
RUN npm install --legacy-peer-deps

# ---------------
# Build App
Expand All @@ -22,7 +22,7 @@ RUN npm run buildfrontend
RUN npm run buildbackend

# Remove non production necessary modules
RUN npm prune --production
RUN npm prune --production --legacy-peer-deps

# ---------------
# Release App
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile.arm32v7
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ WORKDIR /RTL
COPY package.json /RTL/package.json
COPY package-lock.json /RTL/package-lock.json

RUN npm install
RUN npm install --legacy-peer-deps

# ---------------
# Build App
Expand All @@ -26,7 +26,7 @@ RUN npm run buildfrontend
RUN npm run buildbackend

# Remove non production necessary modules
RUN npm prune --production
RUN npm prune --production --legacy-peer-deps

# ---------------
# Release App
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile.arm64v8
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ WORKDIR /RTL
COPY package.json /RTL/package.json
COPY package-lock.json /RTL/package-lock.json

RUN npm install
RUN npm install --legacy-peer-deps

# ---------------
# Build App
Expand All @@ -25,7 +25,7 @@ RUN npm run buildfrontend
RUN npm run buildbackend

# Remove non production necessary modules
RUN npm prune --production
RUN npm prune --production --legacy-peer-deps

# ---------------
# Release App
Expand Down

0 comments on commit 2b32f96

Please sign in to comment.