From 768d5c5c926702ff0920b90e08bd1e5411b55d75 Mon Sep 17 00:00:00 2001 From: Amir Omidi Date: Fri, 14 Apr 2023 12:30:50 -0400 Subject: [PATCH] Some fixes for the docker build setup (#31) * Specify full path to docker registry * Fetch the entire thing * Version bump --- .github/workflows/release.yml | 2 -- Dockerfile | 2 +- pyproject.toml | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5db13e5..1f1c45a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,8 +59,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - with: - fetch-depth: 0 - name: Docker meta id: meta diff --git a/Dockerfile b/Dockerfile index 8abb454..1c76a57 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN ~/.local/bin/poetry build ################################# -FROM certbot/certbot +FROM registry.hub.docker.com/certbot/certbot COPY --from=build /opt/certbot/plugin/dist/*.whl /opt/certbot/src/plugin/ RUN python tools/pip_install.py --no-cache-dir /opt/certbot/src/plugin/*.whl diff --git a/pyproject.toml b/pyproject.toml index 923c204..d007e0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "certbot-dns-google-domains" -version = "0.1.9" +version = "0.1.11" description = "Certbot DNS authenticator for Google Domains" authors = ["Amir Omidi "] license = "Apache 2.0"