Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Zoey <[email protected]>
  • Loading branch information
Zoey2936 authored May 2, 2024
1 parent 291f809 commit 1981b44
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,27 @@ RUN apk upgrade --no-cache -a && \
if [ "$TARGETARCH" = "amd64" ]; then \
cd /app/client && \
npm_config_target_platform=linux npm_config_target_arch=x64 yarn install --no-lockfile && \
clean-modules --yes && \
echo clean-modules --yes && \
cd /app && \
npm_config_target_platform=linux npm_config_target_arch=x64 yarn install --no-lockfile && \
clean-modules --yes && \
echo clean-modules --yes && \
npm_config_target_platform=linux npm_config_target_arch=x64 npm run build && \
clean-modules --yes && \
echo clean-modules --yes && \
rm -r /app/client/.angular /app/client/node_modules /app/node_modules && \
npm_config_target_platform=linux npm_config_target_arch=x64 yarn install --no-lockfile --production && \
clean-modules --yes; \
echo clean-modules --yes; \
elif [ "$TARGETARCH" = "arm64" ]; then \
cd /app/client && \
npm_config_target_platform=linux npm_config_target_arch=arm64 yarn install --no-lockfile && \
clean-modules --yes && \
echo clean-modules --yes && \
cd /app && \
npm_config_target_platform=linux npm_config_target_arch=arm64 yarn install --no-lockfile && \
clean-modules --yes && \
echo clean-modules --yes && \
npm_config_target_platform=linux npm_config_target_arch=arm64 npm run build && \
clean-modules --yes && \
echo clean-modules --yes && \
rm -r /app/client/.angular /app/client/node_modules /app/node_modules && \
npm_config_target_platform=linux npm_config_target_arch=arm64 yarn install --no-lockfile --production && \
clean-modules --yes; \
echo clean-modules --yes; \
fi && \
yarn cache clean --all

Expand Down

0 comments on commit 1981b44

Please sign in to comment.