dockerfile fix

This commit is contained in:
Mike 2025-03-24 04:20:07 -04:00
parent 62512e3691
commit e1a73ad5b8

View file

@ -14,15 +14,9 @@ FROM base AS prerelease
COPY --from=install /temp/dev/node_modules node_modules
COPY . .
# [optional] tests & build
ENV NODE_ENV=production
RUN bun test
RUN bun run build
# copy production dependencies and source code into final image
FROM base AS release
COPY --from=install /temp/prod/node_modules node_modules
COPY --from=prerelease /usr/src/app/app.js .
COPY --from=prerelease /usr/src/app/public /usr/src/app/src .
COPY --from=prerelease /usr/src/app/package.json .
# run the app