aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile_debug
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2025-05-09 14:53:09 +0000
committerterminaldweller <devi@terminaldweller.com>2025-05-09 14:53:09 +0000
commitcf5499db368a1cb52ab734d204f08bbcc114a890 (patch)
tree03e4c28a170a5c2318093e6a417fde9830ab5061 /Dockerfile_debug
parentnow using the options for the google models again (diff)
downloadmilla-cf5499db368a1cb52ab734d204f08bbcc114a890.tar.gz
milla-cf5499db368a1cb52ab734d204f08bbcc114a890.zip
addes user agents. added aliases.HEADmain
Diffstat (limited to 'Dockerfile_debug')
-rw-r--r--Dockerfile_debug4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile_debug b/Dockerfile_debug
index ee2ec57..a46fc90 100644
--- a/Dockerfile_debug
+++ b/Dockerfile_debug
@@ -1,11 +1,11 @@
-FROM golang:1.23-alpine3.21 AS builder
+FROM golang:1.24-alpine3.21 AS builder
WORKDIR /milla
COPY go.sum go.mod /milla/
COPY vendor /milla/vendor
COPY *.go /milla/
RUN CGO_ENABLED=0 go build
-FROM golang:1.23-alpine3.21 AS debug
+FROM golang:1.24-alpine3.21 AS debug
RUN CGO_ENABLED=0 go install -ldflags "-s -w -extldflags '-static'" github.com/go-delve/delve/cmd/dlv@latest
FROM alpine:3.21