wrong source of copy in dockerfile
Unit Tests with docker compose / unit-test (push) Successful in 37s Details
Build image / build (push) Failing after 1m22s Details

This commit is contained in:
Alie 2024-01-14 13:19:41 +01:00
parent ce99f82642
commit b337842ef4
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ RUN cd /temp/prod && bun install --production --frozen-lockfile
FROM base AS release FROM base AS release
COPY --from=install /temp/prod/node_modules node_modules COPY --from=install /temp/prod/node_modules node_modules
COPY --from=install /usr/src/app/src ./src COPY --from=install /usr/src/app/src ./src
COPY --from=install /usr/src/app/package.json . COPY --from=install /temp/prod/package.json .
# run the app # run the app
USER bun USER bun