Compare commits

...

7 Commits

Author SHA1 Message Date
ee6a51677a Add setuptools for certbot dependencies 2024-05-30 17:45:18 +00:00
1b0bc3ed35 Update alpine Docker tag to v3.20.0 2024-05-30 17:45:18 +00:00
9d73e3429e revert c12eb0b381ba146398e8e7dc63c67e07b2fb4455
revert Update alpine Docker tag to v3.20.0
2024-05-30 17:45:18 +00:00
98ad1a4b01 Update certbot to v2.10.0 2024-05-30 17:45:18 +00:00
19428f7a93 Update alpine Docker tag to v3.20.0 2024-05-30 17:44:39 +00:00
791c866432 Fix incorrect reference to default branch 2024-05-30 17:44:39 +00:00
9a60528717 Update base renovate branch 2024-05-30 17:44:39 +00:00
4 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@ name: Test Pull Request
on: on:
pull_request: pull_request:
branches: branches:
- 'main' - 'master'
- 'develop' - 'develop'
env: env:

View File

@ -1,4 +1,4 @@
FROM alpine:3.19.1 as base FROM alpine:3.20.0 as base
ARG TARGETARCH ARG TARGETARCH
FROM base AS base-amd64 FROM base AS base-amd64
@ -62,7 +62,7 @@ RUN python3 -m venv /app/certbot/ && /app/certbot/bin/pip install --upgrade pip
#Added additional pip steps to fix cython 3.0.0 issue - https://github.com/yaml/pyyaml/issues/601 #Added additional pip steps to fix cython 3.0.0 issue - https://github.com/yaml/pyyaml/issues/601
COPY requirements.txt /app/certbot/requirements.txt COPY requirements.txt /app/certbot/requirements.txt
RUN apk add --no-cache --virtual .deps gcc python3-dev libc-dev libffi-dev && \ RUN apk add --no-cache --virtual .deps gcc python3-dev libc-dev libffi-dev && \
/app/certbot/bin/pip install wheel && \ /app/certbot/bin/pip install wheel setuptools && \
/app/certbot/bin/pip install "Cython<3.0" pyyaml --no-build-isolation && \ /app/certbot/bin/pip install "Cython<3.0" pyyaml --no-build-isolation && \
/app/certbot/bin/pip install -r /app/certbot/requirements.txt && \ /app/certbot/bin/pip install -r /app/certbot/requirements.txt && \
ln -s /app/certbot/bin/certbot /usr/bin/certbot && \ ln -s /app/certbot/bin/certbot /usr/bin/certbot && \

View File

@ -1,6 +1,6 @@
{ {
"extends": [":automergeMinor", ":automergePr", ":automergeRequireAllStatusChecks", ":dependencyDashboard", ":disableRateLimiting", ":rebaseStalePrs"], "extends": [":automergeMinor", ":automergePr", ":automergeRequireAllStatusChecks", ":dependencyDashboard", ":disableRateLimiting", ":rebaseStalePrs"],
"baseBranches": ["main"], "baseBranches": ["master"],
"major": { "major": {
"dependencyDashboardApproval": true "dependencyDashboardApproval": true
}, },

View File

@ -1,5 +1,5 @@
# For pinning Python packages to then be parsed by Renovate # For pinning Python packages to then be parsed by Renovate
certbot ==2.9.0 certbot ==2.10.0
certbot-dns-cloudflare ==2.9.0 certbot-dns-cloudflare ==2.10.0
apprise ==1.8.0 apprise ==1.8.0