mirror of
https://github.com/thegeeklab/git-batch.git
synced 2024-11-21 10:30:39 +00:00
chore: replace libressl-dev by openssl-dev (#69)
This commit is contained in:
parent
678db319cb
commit
245b934fdc
@ -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',
|
||||
|
@ -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
|
||||
|
||||
...
|
||||
|
@ -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") && \
|
||||
|
@ -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") && \
|
||||
|
@ -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") && \
|
||||
|
Loading…
Reference in New Issue
Block a user