File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 17
17
with :
18
18
docker_registry : ghcr.io
19
19
docker_username : ${{ github.actor }}
20
- docker_password : ${{ secrets.GITHUB_TOKEN }}
20
+ docker_password : ${{ secrets.GITHUB_TOKEN }}
21
21
backup_registry : ${{ secrets.BACKUP_REGISTRY }}
22
22
backup_username : ${{ secrets.BACKUP_USERNAME }}
23
23
backup_password : ${{ secrets.BACKUP_PASSWORD }}
Original file line number Diff line number Diff line change 4
4
RUN go mod download
5
5
RUN make build
6
6
7
- FROM alpine:latest
7
+ FROM scratch
8
+ COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
9
+ COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
8
10
COPY --from=builder /app/build/github-backup /main
9
11
ENTRYPOINT ["/main" ]
10
12
CMD ["--config" , "/config/config.json" ]
You can’t perform that action at this time.
0 commit comments