modified: main_dc/yalarba/api_yal/Dockerfile

upgrade the api_yal to 1.26.0-alpine version golang
This commit is contained in:
2026-02-12 03:39:24 +05:00
parent f139cf622e
commit b689c55bdc
+2 -2
View File
@@ -1,4 +1,4 @@
FROM golang:1.25.1-alpine AS builder
FROM golang:1.26.0-alpine AS builder
WORKDIR /app
@@ -16,7 +16,7 @@ COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o /app/bin/api_yal ./cmd/main.go
# Финальный образ
FROM alpine:latest AS runner
FROM golang:1.26.0-alpine AS runner
WORKDIR /app