Skip to content

Commit

Permalink
ci: fix docker entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Stormix committed Nov 12, 2023
1 parent 66f602e commit dfbe508
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ FROM base AS release
COPY --from=install /temp/prod/node_modules node_modules
COPY --from=prerelease /usr/src/app/src src
COPY --from=prerelease /usr/src/app/package.json .
COPY --from=prerelease /usr/src/app/tsconfig.json .

# run the app
USER bun
Expand All @@ -28,4 +29,4 @@ ARG PORT=${PORT}

EXPOSE ${PORT}

ENTRYPOINT [ "bun", "run", "src/index.ts" ]
ENTRYPOINT [ "bun", "run", "start" ]

0 comments on commit dfbe508

Please sign in to comment.