diff --git a/.drone.jsonnet b/.drone.jsonnet index 46d78ca..0ea7164 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -201,7 +201,7 @@ local PipelineBuildContainer(arch='amd64') = { name: 'build', image: 'python:3.9-alpine', commands: [ - 'apk add -Uq --no-cache build-base libressl-dev libffi-dev musl-dev python3-dev git cargo', + 'apk add -Uq --no-cache build-base openssl-dev libffi-dev musl-dev python3-dev git cargo', 'git fetch -tq', 'pip install poetry poetry-dynamic-versioning -qq', 'poetry build', diff --git a/.drone.yml b/.drone.yml index 8339def..bdbcf63 100644 --- a/.drone.yml +++ b/.drone.yml @@ -379,7 +379,7 @@ steps: - name: build image: python:3.9-alpine commands: - - apk add -Uq --no-cache build-base libressl-dev libffi-dev musl-dev python3-dev git cargo + - apk add -Uq --no-cache build-base openssl-dev libffi-dev musl-dev python3-dev git cargo - git fetch -tq - pip install poetry poetry-dynamic-versioning -qq - poetry build @@ -545,6 +545,6 @@ depends_on: --- kind: signature -hmac: f5b5b01760146e2e2e32771354113cf6cdc894a7143304859f4190a340831abb +hmac: ad96c3cb18d43b6185a48622700f06eff625aa16f31d06e1c65e649907699a9a ... diff --git a/docker/Dockerfile.amd64 b/docker/Dockerfile.amd64 index bec7afe..103ad8a 100644 --- a/docker/Dockerfile.amd64 +++ b/docker/Dockerfile.amd64 @@ -11,7 +11,7 @@ ENV PY_COLORS=1 ADD dist/docker_autotag-*.whl / -RUN apk --update add --virtual .build-deps build-base libffi-dev libressl-dev && \ +RUN apk --update add --virtual .build-deps build-base libffi-dev openssl-dev && \ apk --update add git && \ pip install --upgrade --no-cache-dir pip && \ pip install --no-cache-dir $(find / -name "docker_autotag-*.whl") && \ diff --git a/docker/Dockerfile.arm b/docker/Dockerfile.arm index f92b060..94762fb 100644 --- a/docker/Dockerfile.arm +++ b/docker/Dockerfile.arm @@ -11,7 +11,7 @@ ENV PY_COLORS=1 ADD dist/docker_autotag-*.whl / -RUN apk --update add --virtual .build-deps build-base libffi-dev libressl-dev && \ +RUN apk --update add --virtual .build-deps build-base libffi-dev openssl-dev && \ apk --update add git && \ pip install --upgrade --no-cache-dir pip && \ pip install --no-cache-dir $(find / -name "docker_autotag-*.whl") && \ diff --git a/docker/Dockerfile.arm64 b/docker/Dockerfile.arm64 index 2a685b9..00016a4 100644 --- a/docker/Dockerfile.arm64 +++ b/docker/Dockerfile.arm64 @@ -11,7 +11,7 @@ ENV PY_COLORS=1 ADD dist/docker_autotag-*.whl / -RUN apk --update add --virtual .build-deps build-base libffi-dev libressl-dev && \ +RUN apk --update add --virtual .build-deps build-base libffi-dev openssl-dev && \ apk --update add git && \ pip install --upgrade --no-cache-dir pip && \ pip install --no-cache-dir $(find / -name "docker_autotag-*.whl") && \