wrong source from in dockerfile
Unit Tests with docker compose / unit-test (push) Successful in 34s Details
Build image / build (push) Failing after 1m55s Details

This commit is contained in:
Alie 2024-01-14 13:23:36 +01:00
parent b337842ef4
commit bccfcc680a
1 changed files with 1 additions and 1 deletions

View File

@ -22,8 +22,8 @@ RUN cd /temp/prod && bun install --production --frozen-lockfile
# Copy production dependencies and source code into final image
FROM base AS release
COPY --from=install /temp/prod/node_modules node_modules
COPY --from=install /usr/src/app/src ./src
COPY --from=install /temp/prod/package.json .
COPY ./src ./src
# run the app
USER bun