diff --git a/Dockerfile b/Dockerfile index 99a0aad..7e0b9cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -from golang:1.23 as build +from golang:1.23.1 as build workdir /app copy . . run make -from ubuntu as base +from ubuntu:noble-20240801 as base copy --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ copy --from=build /app/bin/kamal-proxy /usr/local/bin/ expose 80 443