Add Labels

This commit is contained in:
Matt Petersen 2024-07-15 09:02:39 -06:00
parent c454b4f271
commit 366066d505
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ WORKDIR /var/app
RUN CGO_ENABLED=0 go build -o app .
FROM alpine:3.14
LABEL org.opencontainers.image.source https://github.com/trstringer/manual-approval
LABEL org.opencontainers.image.source https://github.com/radicldefense/manual-approval
RUN apk update && apk add ca-certificates
COPY --from=builder /var/app/app /var/app/app
CMD ["/var/app/app"]

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/trstringer/manual-approval
module github.com/radicldefense/manual-approval
go 1.17