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

This commit is contained in:
Robert Kaussow 2021-06-30 09:01:37 +02:00 committed by GitHub
parent fad67a9d22
commit 164b1acd4a
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: f5b5b01760146e2e2e32771354113cf6cdc894a7143304859f4190a340831abb
hmac: ad96c3cb18d43b6185a48622700f06eff625aa16f31d06e1c65e649907699a9a
...

View File

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

View File

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

View File

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