fix docker file

This commit is contained in:
Mike 2025-03-24 04:36:15 -04:00
parent 561594d953
commit 6ae4ec6847

View file

@ -15,11 +15,6 @@ FROM base AS prerelease
COPY --from=install /temp/dev/node_modules node_modules COPY --from=install /temp/dev/node_modules node_modules
COPY . . COPY . .
# copy production dependencies and source code into final image
FROM base AS release
COPY --from=prerelease /usr/src/app/public /usr/src/app/src .
COPY --from=prerelease /usr/src/app/package.json .
RUN chown -R bun /usr/src/app
# run the app # run the app
USER bun USER bun