fix: update Dockerfile to use golang:1.24-bullseye base image

This commit is contained in:
Marco Pedone 2025-08-07 17:24:33 +02:00
parent 41616e2c05
commit 9ed9a4c39e

View file

@ -1,5 +1,5 @@
# Start from the latest golang base image # Start from the latest golang base image
FROM golang:1.24 AS builder FROM golang:1.24-bullseye AS builder
# Set the Current Working Directory inside the container # Set the Current Working Directory inside the container
WORKDIR /app WORKDIR /app