Update Dockerfile to Go 1.24

This commit is contained in:
Trey t
2025-12-15 20:15:06 -06:00
parent 226930d383
commit e34d222634
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ COPY admin/ .
RUN npm run build RUN npm run build
# Go build stage # Go build stage
FROM golang:1.23-alpine AS builder FROM golang:1.24-alpine AS builder
# Install build dependencies # Install build dependencies
RUN apk add --no-cache git ca-certificates tzdata RUN apk add --no-cache git ca-certificates tzdata

2
go.mod
View File

@@ -1,6 +1,6 @@
module github.com/treytartt/casera-api module github.com/treytartt/casera-api
go 1.23.0 go 1.24.0
require ( require (
github.com/gin-contrib/cors v1.7.3 github.com/gin-contrib/cors v1.7.3