Merge pull request #19 from linuxserver/rust

fix py crypto builds
master
aptalca 2021-02-17 21:25:20 -05:00 zatwierdzone przez GitHub
commit d5643aff94
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
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 && \ git clone https://github.com/docker/compose.git && \
cd compose && \ cd compose && \
git checkout ${COMPOSE_VERSION} && \ git checkout ${COMPOSE_VERSION} && \
pip3 install \ pip3 install -U pip && \
pip install \
pyinstaller && \ pyinstaller && \
pip3 install \ pip install \
-r requirements.txt \ -r requirements.txt \
-r requirements-build.txt && \ -r requirements-build.txt && \
./script/build/write-git-sha > compose/GITSHA && \ ./script/build/write-git-sha > compose/GITSHA && \

Wyświetl plik

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

Wyświetl plik

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