mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 19:14:54 +02:00
Merge branch 'main' into candidate-3.0.1
This commit is contained in:
@@ -4,20 +4,12 @@ jobs:
|
|||||||
PYTHON_VERSION: 3.12
|
PYTHON_VERSION: 3.12
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
macos-py38-cover:
|
macos-cover:
|
||||||
# mac unit+cover tests with the oldest python we support
|
|
||||||
IMAGE_NAME: macOS-15
|
IMAGE_NAME: macOS-15
|
||||||
PYTHON_VERSION: 3.8
|
|
||||||
TOXENV: cover
|
TOXENV: cover
|
||||||
# As of pip 23.1.0, builds started failing on macOS unless this flag was set.
|
# As of pip 23.1.0, builds started failing on macOS unless this flag was set.
|
||||||
# See https://github.com/certbot/certbot/pull/9717#issuecomment-1610861794.
|
# See https://github.com/certbot/certbot/pull/9717#issuecomment-1610861794.
|
||||||
PIP_USE_PEP517: "true"
|
PIP_USE_PEP517: "true"
|
||||||
macos-cover:
|
|
||||||
# mac unit+cover tests with the newest python we support
|
|
||||||
IMAGE_NAME: macOS-15
|
|
||||||
TOXENV: cover
|
|
||||||
# See explanation under macos-py38-cover.
|
|
||||||
PIP_USE_PEP517: "true"
|
|
||||||
linux-oldest:
|
linux-oldest:
|
||||||
IMAGE_NAME: ubuntu-22.04
|
IMAGE_NAME: ubuntu-22.04
|
||||||
PYTHON_VERSION: 3.8
|
PYTHON_VERSION: 3.8
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
# Certbot change log
|
# Certbot change log
|
||||||
|
|
||||||
Certbot adheres to [Semantic Versioning](https://semver.org/).
|
Certbot adheres to [Semantic Versioning](https://semver.org/).
|
||||||
@@ -11,7 +10,7 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
*
|
* Updated our Docker images to be based on Alpine Linux 3.20.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
@@ -19,7 +18,6 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
|
|||||||
|
|
||||||
More details about these changes can be found on our GitHub repo.
|
More details about these changes can be found on our GitHub repo.
|
||||||
|
|
||||||
|
|
||||||
## 3.0.1 - 2024-11-14
|
## 3.0.1 - 2024-11-14
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#base image
|
#base image
|
||||||
FROM python:3.12-alpine3.18 AS certbot
|
FROM python:3.12-alpine3.20 AS certbot
|
||||||
|
|
||||||
ENTRYPOINT [ "certbot" ]
|
ENTRYPOINT [ "certbot" ]
|
||||||
EXPOSE 80 443
|
EXPOSE 80 443
|
||||||
@@ -15,7 +15,7 @@ COPY certbot src/certbot
|
|||||||
# Install certbot runtime dependencies
|
# Install certbot runtime dependencies
|
||||||
RUN apk add --no-cache --virtual .certbot-deps \
|
RUN apk add --no-cache --virtual .certbot-deps \
|
||||||
libffi \
|
libffi \
|
||||||
libssl1.1 \
|
libssl3 \
|
||||||
openssl \
|
openssl \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
binutils
|
binutils
|
||||||
|
|||||||
Reference in New Issue
Block a user