Skip to content

Commit

Permalink
Set base image versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmcconnell committed Sep 16, 2024
1 parent 547d14e commit 3a3eb9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 3a3eb9c

Please sign in to comment.