diff --git a/Dockerfile b/Dockerfile index 411d007..2bef4da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM oven/bun:1.0.15-alpine as builder +FROM oven/bun:1.0.18-alpine as builder WORKDIR /app COPY package.json . COPY bun.lockb . @@ -6,7 +6,7 @@ RUN bun i COPY . . RUN bun build ./src/index.ts --target bun --outdir ./build -FROM oven/bun:1.0.15-alpine +FROM oven/bun:1.0.18-alpine WORKDIR /app COPY --from=builder /app/build/index.js /app/index.js COPY --from=builder /app/package.json /app/package.json