Skip to content

Commit 9d6d8bf

Browse files
lucasmodrichclaude
andcommitted
chore: update Dockerfile for fork ownership
- Bump builder to golang:1.25-alpine to match go.mod - Fix ldflags module path to github.com/lucasmodrich/git-sync - Update maintainer label Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 69f3ddf commit 9d6d8bf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.5-alpine AS builder
1+
FROM golang:1.25-alpine AS builder
22

33
WORKDIR /go/src/app
44

@@ -18,14 +18,14 @@ RUN go mod download \
1818

1919
COPY . /go/src/app/
2020

21-
RUN go build -a -installsuffix cgo -ldflags="-w -s -X github.com/AkashRajpurohit/git-sync/pkg/version.Version=${VERSION} -X github.com/AkashRajpurohit/git-sync/pkg/version.Build=${BUILD}" -o git-sync . \
21+
RUN go build -a -installsuffix cgo -ldflags="-w -s -X github.com/lucasmodrich/git-sync/pkg/version.Version=${VERSION} -X github.com/lucasmodrich/git-sync/pkg/version.Build=${BUILD}" -o git-sync . \
2222
&& upx -q git-sync
2323

2424
# Application image
2525
FROM alpine:latest
2626
WORKDIR /opt/go
2727

28-
LABEL maintainer="AkashRajpurohit <me@akashrajpurohit.com>"
28+
LABEL maintainer="Lucas Modrich"
2929

3030
# Install git since it's required for the application
3131
RUN apk add --no-cache git su-exec

0 commit comments

Comments
 (0)