diff --git a/Dockerfile b/Dockerfile index 214575e..bec3611 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Start from base golang image -FROM golang:1.23.0-alpine AS builder +FROM golang:1.23.1-alpine AS builder # Create the user and group files that will be used in the running container to # run the process as an unprivileged user. diff --git a/dev.Dockerfile b/dev.Dockerfile index f825b14..320e79e 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -1,7 +1,7 @@ # DO NOT use in production! # Dockerfile for local development -FROM golang:1.23.0 +FROM golang:1.23.1 # install the watcher RUN go install github.com/githubnemo/CompileDaemon@v1.2.1