From bd6712c7505da6287f0ac6cf8c55ccf379069ac4 Mon Sep 17 00:00:00 2001 From: Declan Chidlow Date: Sat, 13 Jul 2024 11:34:19 +0800 Subject: [PATCH] Move bun ver to latest in docker --- api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/Dockerfile b/api/Dockerfile index 6478c81..fcc3014 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -1,4 +1,4 @@ -FROM oven/bun:1 as build +FROM oven/bun:latest as build WORKDIR /build/app COPY api/package.json api/bun.lockb ./ COPY lib ../lib @@ -7,7 +7,7 @@ RUN bun install --frozen-lockfile COPY ./api . RUN bun run build -FROM oven/bun:1 as prod +FROM oven/bun:latest as prod WORKDIR /app/api COPY --from=build /build/app/package.json /build/app/bun.lockb ./ COPY --from=build /build/app/dist ./dist