fix dockerfile go version
All checks were successful
Build and Deploy Website / build (push) Successful in 5m1s

This commit is contained in:
2026-02-27 23:58:34 -08:00
parent 3934751615
commit e8fdbaba84
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
module smpark.in
go 1.24.0
go 1.26.0
require golang.org/x/time v0.14.0

View File

@@ -12,7 +12,7 @@ RUN npm run build -- --outDir dist --emptyOutDir
# ================================
# Backend build
# ================================
FROM golang:1.23-alpine AS backend
FROM golang:1.26-alpine AS backend
WORKDIR /build
COPY Backend/ ./