Added label support to builds #27

Closed
bizcochito wants to merge 18 commits from build into develop
1 changed files with 1 additions and 1 deletions
Showing only changes of commit bccfcc680a - Show all commits

View File

@ -22,8 +22,8 @@ RUN cd /temp/prod && bun install --production --frozen-lockfile
# Copy production dependencies and source code into final image # Copy production dependencies and source code into final image
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 /temp/prod/package.json . COPY --from=install /temp/prod/package.json .
COPY ./src ./src
# run the app # run the app
USER bun USER bun