diff --git a/Dockerfile b/Dockerfile index 6ec73aa..33817da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/go.mod b/go.mod index 413e6d2..f7a2e06 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/trstringer/manual-approval +module github.com/radicldefense/manual-approval go 1.17