This commit is contained in:
Niki Wix Skaarup 2025-04-06 02:27:03 +02:00
parent fb56769405
commit 0d06e26d89
Signed by: nikiskaarup
GPG key ID: FC2F1B116F6E788C
2 changed files with 4 additions and 4 deletions

View file

@ -3,6 +3,8 @@
FROM oven/bun:latest AS base
WORKDIR /app
ENV NODE_ENV=production
# install dependencies into temp directory
# this will cache them and speed up future builds
FROM base AS install
@ -22,7 +24,6 @@ COPY --from=install /temp/dev/node_modules node_modules
COPY . .
# [optional] tests & build
ENV NODE_ENV=production
# RUN bun test
# RUN bun run build
@ -34,5 +35,4 @@ COPY --from=install /temp/prod/node_modules node_modules
COPY --from=prerelease /app/ .
# run the app
ENTRYPOINT [ "bun", "run", "start" ]
ENTRYPOINT [ "bun", "start" ]