Skip to content

Commit

Permalink
node?? so 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
sylv committed Jan 7, 2024
1 parent 6614705 commit f843214
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ COPY --from=build /usr/src/micro/packages/web/.next/standalone ./packages/web/

COPY wrapper.sh .
RUN chmod +x ./wrapper.sh
RUN apk add --no-cache nodejs

# run the app
USER bun
Expand Down
2 changes: 1 addition & 1 deletion wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cleanup() {
trap cleanup EXIT HUP INT QUIT PIPE TERM ERR

cd packages/api && bun run ./dist/main.js &
cd packages/web && node ./server.js &
cd packages/web && bun run ./server.js &

wait -n
exit $?

0 comments on commit f843214

Please sign in to comment.