diff --git a/Dockerfile b/Dockerfile index e585fcb..4933b38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # use the official Bun image # see all versions at https://hub.docker.com/r/oven/bun/tags -FROM oven/bun:1-alpine as base +FROM oven/bun:1.0.26-alpine as base WORKDIR /app # install dependencies into temp directory @@ -23,7 +23,7 @@ COPY . . # I don't have any tests, I am bad. ENV NODE_ENV=production RUN bun --version -RUN bunx --bun vite build +RUN bun vite build # Copy the distribution folder into the final image. FROM nginx:stable-alpine as release