mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-04 19:10:56 -04:00
dockerfile fix
This commit is contained in:
parent
62512e3691
commit
e1a73ad5b8
1 changed files with 1 additions and 7 deletions
|
@ -14,15 +14,9 @@ FROM base AS prerelease
|
||||||
COPY --from=install /temp/dev/node_modules node_modules
|
COPY --from=install /temp/dev/node_modules node_modules
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# [optional] tests & build
|
|
||||||
ENV NODE_ENV=production
|
|
||||||
RUN bun test
|
|
||||||
RUN bun run build
|
|
||||||
|
|
||||||
# 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=prerelease /usr/src/app/public /usr/src/app/src .
|
||||||
COPY --from=prerelease /usr/src/app/app.js .
|
|
||||||
COPY --from=prerelease /usr/src/app/package.json .
|
COPY --from=prerelease /usr/src/app/package.json .
|
||||||
|
|
||||||
# run the app
|
# run the app
|
||||||
|
|
Loading…
Add table
Reference in a new issue