We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a784e4f commit 5054b26Copy full SHA for 5054b26
Dockerfile
@@ -5,7 +5,7 @@ RUN python -V
5
RUN python -c 'import platform;print(platform.machine())'
6
ARG TARGETARCH
7
RUN echo $TARGETARCH
8
-RUN if [[ "$TARGETARCH" == "arm64" ]] ; then \
+RUN if [ "$TARGETARCH" = "arm64" ] ; then \
9
pip install https://github.com/mosquito/cysystemd/releases/download/1.6.2/cysystemd-1.6.2-cp312-cp312-manylinux_2_28_aarch64.whl ; \
10
else \
11
pip install https://github.com/mosquito/cysystemd/releases/download/1.6.2/cysystemd-1.6.2-cp312-cp312-manylinux_2_28_x86_64.whl ; \
0 commit comments