From 05c16df6d223ec81166b03c88a517ddf237a8a01 Mon Sep 17 00:00:00 2001 From: Sakurasan <26715255+Sakurasan@users.noreply.github.com> Date: Sun, 6 Oct 2024 00:56:27 +0800 Subject: [PATCH] update go version --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 968a3d4..3d34be2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /frontend-build COPY ./web/ . RUN npm install && npm run build && rm -rf node_modules -FROM golang:1.21-alpine as builder +FROM golang:1.23-alpine as builder LABEL anther="github.com/Sakurasan" RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && apk --no-cache add make cmake upx WORKDIR /build