From 48f6a288039ef9d1d6037114e9cbcd05ca28c28a Mon Sep 17 00:00:00 2001 From: Reinaldy Rafli Date: Wed, 31 Jan 2024 11:09:07 +0700 Subject: [PATCH] feat: better dockerfile --- Dockerfile | 38 ++++++-------------------------------- 1 file changed, 6 insertions(+), 32 deletions(-) diff --git a/Dockerfile b/Dockerfile index 28afe2e..0dc73ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,34 +1,8 @@ -# use the official Bun image -# see all versions at https://hub.docker.com/r/oven/bun/tags -FROM oven/bun:1.0.21 as base -WORKDIR /usr/src/app - -# install dependencies into temp directory -# this will cache them and speed up future builds -FROM base AS install -RUN mkdir -p /temp/dev -COPY package.json bun.lockb /temp/dev/ -RUN cd /temp/dev && bun install --frozen-lockfile - -# install with --production (exclude devDependencies) -RUN mkdir -p /temp/prod -COPY package.json bun.lockb /temp/prod/ -RUN cd /temp/prod && bun install --frozen-lockfile --production - -# copy node_modules from temp directory -# then copy all (non-ignored) project files into the image -FROM base AS prerelease -COPY --from=install /temp/dev/node_modules node_modules +FROM oven/bun:1.0.25-debian +WORKDIR /app +RUN apt-get update && apt-get install -y curl wget 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/index.ts . -COPY --from=prerelease /usr/src/app/src src -COPY --from=prerelease /usr/src/app/package.json . - -# run the app -USER bun +RUN bun install --frozen-lockfile --production +RUN bun build index.ts --compile --outfile=server EXPOSE 3000/tcp -ENTRYPOINT [ "bun", "run", "index.ts" ] +ENTRYPOINT [ "bun", "run", "index.ts" ] \ No newline at end of file