We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab4e885 commit 824af8eCopy full SHA for 824af8e
Dockerfile
@@ -1,5 +1,5 @@
1
# Build
2
-FROM golang:1.21-alpine AS build-env
+FROM golang:1.24-alpine AS build-env
3
RUN apk add build-base
4
WORKDIR /app
5
COPY . /app
@@ -8,7 +8,7 @@ RUN go mod download
8
RUN go build ./cmd/subfinder
9
10
# Release
11
-FROM alpine:3.18.6
+FROM alpine:latest
12
RUN apk upgrade --no-cache \
13
&& apk add --no-cache bind-tools ca-certificates
14
COPY --from=build-env /app/v2/subfinder /usr/local/bin/
0 commit comments