From fbffecffcbacc0e0572a312656cde8f28af8035b Mon Sep 17 00:00:00 2001 From: lanyulei Date: Fri, 21 Mar 2025 12:43:20 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d1e7bdf..eb1878c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ VUE_APP_BASE_API = \'\''\ > .env.production RUN export NODE_OPTIONS=--openssl-legacy-provider && pnpm run build:prod -FROM golang:1.22-alpine3.20 AS build +FROM golang:1.23-alpine3.20 AS build WORKDIR /opt/workflow/ferry COPY . . @@ -28,7 +28,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -o ferry . FROM alpine:3.20.3 AS prod -MAINTAINER lanyulei +LABEL maintainer="lanyulei" RUN echo -e "http://mirrors.aliyun.com/alpine/v3.11/main\nhttp://mirrors.aliyun.com/alpine/v3.11/community" > /etc/apk/repositories \ && apk add -U tzdata \