diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 26d170a..3ec8e2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax = docker/dockerfile:1 # Adjust BUN_VERSION as desired -ARG BUN_VERSION=1.0.12 +ARG BUN_VERSION=1.0.36 FROM oven/bun:${BUN_VERSION} as base LABEL fly_launch_runtime="Bun" @@ -36,7 +36,7 @@ RUN ./bin/build.ts && rm -r node_modules ENV NODE_ENV=production RUN [ "bun", "install", "--production", "--ci" ] -FROM alpine:20230901 as postprocess +FROM alpine:20240329 as postprocess RUN echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories |