We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d98e03f commit 3265ab7Copy full SHA for 3265ab7
2 files changed
.github/dependabot.yml
@@ -0,0 +1,13 @@
1
+version: 2
2
+updates:
3
+ # Configuration for Golang
4
+ - package-ecosystem: "gomod"
5
+ directory: "/"
6
+ schedule:
7
+ interval: "weekly"
8
+
9
+ # Configuration for Docker
10
+ - package-ecosystem: "docker"
11
12
13
Containerfile
@@ -15,7 +15,7 @@ ENV GO111MODULE=on \
15
RUN go mod tidy && \
16
go build -ldflags "-X 'main.version=${VERSION}'" -o /app/bin/gitlab-sync ./cmd/main.go
17
18
-FROM alpine:latest as security_provider
+FROM alpine:3.22.0 as security_provider
19
20
RUN addgroup -S gitlab-sync \
21
&& adduser -S gitlab-sync -G gitlab-sync
0 commit comments