fix py crypto builds

master
aptalca 2021-02-17 17:14:08 -05:00
rodzic b21ff75141
commit 51dab21b6f
3 zmienionych plików z 10 dodań i 6 usunięć

Wyświetl plik

@ -23,9 +23,10 @@ RUN \
git clone https://github.com/docker/compose.git && \
cd compose && \
git checkout ${COMPOSE_VERSION} && \
pip3 install \
pip3 install -U pip && \
pip install \
pyinstaller && \
pip3 install \
pip install \
-r requirements.txt \
-r requirements-build.txt && \
./script/build/write-git-sha > compose/GITSHA && \

Wyświetl plik

@ -24,9 +24,10 @@ RUN \
git clone https://github.com/docker/compose.git && \
cd compose && \
git checkout ${COMPOSE_VERSION} && \
pip3 install \
pip3 install -U pip && \
pip install \
pyinstaller && \
pip3 install \
pip install \
-r requirements.txt \
-r requirements-build.txt && \
./script/build/write-git-sha > compose/GITSHA && \

Wyświetl plik

@ -12,6 +12,7 @@ RUN \
python3 \
python3-dev \
python3-pip \
rustc \
zlib1g-dev
RUN \
@ -24,9 +25,10 @@ RUN \
git clone https://github.com/docker/compose.git && \
cd compose && \
git checkout ${COMPOSE_VERSION} && \
pip3 install \
pip3 install -U pip && \
pip install \
pyinstaller && \
pip3 install \
pip install \
-r requirements.txt \
-r requirements-build.txt && \
./script/build/write-git-sha > compose/GITSHA && \