chore: replace libressl-dev by openssl-dev (#69)

This commit is contained in:
Robert Kaussow 2021-06-30 09:01:59 +02:00 committed by GitHub
parent 678db319cb
commit 245b934fdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View File

@ -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',

View File

@ -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
...

View File

@ -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") && \

View File

@ -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") && \

View File

@ -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") && \