Skip to content

Commit

Permalink
deploy retry
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonSmith committed Aug 7, 2024
1 parent d479207 commit 0e963c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/interfaces/coral_web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ RUN if [ "$NODE_ENV" = "production" ]; then npm run build; else npm run build:de
CMD \
if [ "$NODE_ENV" = "production" ]; then \
if [ -f yarn.lock ]; then yarn start; \
elif [ -f package-lock.json ]; then npm start:prod; \
elif [ -f pnpm-lock.yaml ]; then pnpm start:prod; \
else npm start:prod; \
elif [ -f package-lock.json ]; then npm run start:prod; \
elif [ -f pnpm-lock.yaml ]; then pnpm run start:prod; \
else npm run start:prod; \
fi; \
else \
if [ -f yarn.lock ]; then yarn dev; \
Expand Down

0 comments on commit 0e963c8

Please sign in to comment.