Downgrade Go version to 1.23.5 in Dockerfiles and go.mod

This commit is contained in:
Luis Eduardo
2025-02-05 01:40:21 +00:00
parent 7ae8511080
commit f40e73ba85
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
# To make sure we have the deno and golang binaries
FROM denoland/deno:debian-2.1.9 AS deno
FROM golang:1.23.6-bookworm AS golang
FROM golang:1.23.5-bookworm AS golang
# Set the base image
FROM debian:12.7

View File

@@ -1,6 +1,6 @@
# To make sure we have the deno and golang binaries
FROM denoland/deno:debian-2.1.9 AS deno
FROM golang:1.23.6-bookworm AS golang
FROM golang:1.23.5-bookworm AS golang
# Set the base image
FROM debian:12.7

2
go.mod
View File

@@ -1,6 +1,6 @@
module github.com/eduardolat/pgbackweb
go 1.23.6
go 1.23.5
require (
github.com/adhocore/gronx v1.8.1