From 457ca3c9d382aefd578e46901d5ed047bef3652f Mon Sep 17 00:00:00 2001 From: tobi Date: Mon, 28 Apr 2025 09:31:51 +0000 Subject: [chore] Update build to use new woodpecker dind container, bump version numbers (#4073) As described! Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4073 Co-authored-by: tobi Co-committed-by: tobi --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 184be41cd..56cea6e31 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Dockerfile reference: https://docs.docker.com/engine/reference/builder/ # stage 1: generate the web/assets/dist bundles -FROM --platform=${BUILDPLATFORM} node:18-alpine AS bundler +FROM --platform=${BUILDPLATFORM} node:lts-alpine AS bundler COPY web web RUN yarn --cwd ./web/source install && \ @@ -11,7 +11,7 @@ RUN yarn --cwd ./web/source install && \ rm -rf ./web/source # stage 2: build the executor container -FROM --platform=${TARGETPLATFORM} alpine:3.20 as executor +FROM --platform=${TARGETPLATFORM} alpine:3.21 AS executor # switch to non-root user:group for GtS USER 1000:1000 -- cgit v1.3