Skip to content

Commit

Permalink
chore: no idea
Browse files Browse the repository at this point in the history
  • Loading branch information
flowergardn committed Dec 29, 2024
1 parent 0928983 commit 4242565
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# use the official Bun image
# see all versions at https://hub.docker.com/r/oven/bun/tags
FROM oven/bun:1 AS base
WORKDIR /usr/src/app
WORKDIR /app
USER root

# install dependencies into temp directory
Expand All @@ -25,9 +25,9 @@ COPY . .
# copy production dependencies and source code into final image
FROM base AS release
COPY --from=install /temp/prod/node_modules node_modules
COPY --from=prerelease /usr/src/app/src/ src/
COPY --from=prerelease /usr/src/app/package.json .
COPY --from=prerelease /usr/src/app/tsconfig.json .
COPY --from=prerelease /app/src/ src/
COPY --from=prerelease /app/package.json .
COPY --from=prerelease /app/tsconfig.json .

RUN apt-get update && apt-get install tree
RUN tree -I node_modules
Expand Down

0 comments on commit 4242565

Please sign in to comment.