diff --git a/.gitignore b/.gitignore index 003f186..ee58573 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -oidc-rp +auth-oidc diff --git a/Dockerfile b/Dockerfile index 49f166d..18e9760 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,6 @@ RUN CGO_ENABLED=0 \ FROM gcr.io/distroless/static:latest@sha256:41972110a1c1a5c0b6adb283e8aa092c43c31f7c5d79b8656fbffff2c3e61f05 -COPY --from=builder /app/oidc-rp / +COPY --from=builder /app/auth-oidc / -ENTRYPOINT ["/oidc-rp"] +ENTRYPOINT ["/auth-oidc"] diff --git a/README.md b/README.md index d5f5967..b8179ee 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# oidc-rp +# auth-oidc -[![](https://github.com/pkoenig10/oidc-rp/actions/workflows/ci.yml/badge.svg)][actions] +[![](https://github.com/pkoenig10/auth-oidc/actions/workflows/ci.yml/badge.svg)][actions] An [OpenID Connect](https://openid.net/connect/) Relying Party designed to support authentication and authorization in a reverse proxy. @@ -88,4 +88,4 @@ groups: - user2@example.com ``` -[actions]: https://github.com/pkoenig10/oidc-rp/actions +[actions]: https://github.com/pkoenig10/auth-oidc/actions diff --git a/go.mod b/go.mod index 934da89..58660e0 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/pkoenig10/oidc-rp +module github.com/pkoenig10/auth-oidc go 1.21