Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinAdodo committed May 26, 2024
1 parent 84caa77 commit cfc9f26
Show file tree
Hide file tree
Showing 5 changed files with 750 additions and 2,018 deletions.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ ARG ANGULAR_ENV
ENV NODE_ENV=$ANGULAR_ENV

# Build the application for production
RUN if [ "$ANGULAR_ENV" = "production" ]; then npm run build -- --configuration=production; else npm run build; fi
RUN if [ "$ANGULAR_ENV" = "production" ]; then \
npm run build -- --configuration=production --platform=browser; \
else \
npm run build --platform=browser; \
fi


# Install serve to serve your app on container start
RUN npm install -g serve
Expand Down
Loading

0 comments on commit cfc9f26

Please sign in to comment.