diff --git a/.drone.jsonnet b/.drone.jsonnet index b741e2b..2c2e20b 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 ac66221..ede9c87 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: 438c9214d3f09c66e25c1b7dd014e15f21e299a8b1f14cbae00b3dc3e3ed9863 +hmac: 92082ff18beff79f456e64d0248c4f7c10901dbec6c1d41cc49fa0287c0c96bb ... diff --git a/docker/Dockerfile.amd64 b/docker/Dockerfile.amd64 index 04b6516..06b66c7 100644 --- a/docker/Dockerfile.amd64 +++ b/docker/Dockerfile.amd64 @@ -11,7 +11,7 @@ ENV PY_COLORS=1 ADD dist/git_batch-*.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 "git_batch-*.whl") && \ diff --git a/docker/Dockerfile.arm b/docker/Dockerfile.arm index ecce103..8754368 100644 --- a/docker/Dockerfile.arm +++ b/docker/Dockerfile.arm @@ -11,7 +11,7 @@ ENV PY_COLORS=1 ADD dist/git_batch-*.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 "git_batch-*.whl") && \ diff --git a/docker/Dockerfile.arm64 b/docker/Dockerfile.arm64 index 0293384..853d6f1 100644 --- a/docker/Dockerfile.arm64 +++ b/docker/Dockerfile.arm64 @@ -11,7 +11,7 @@ ENV PY_COLORS=1 ADD dist/git_batch-*.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 "git_batch-*.whl") && \