We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff41f9f commit a6d850cCopy full SHA for a6d850c
.devops/cpu.Dockerfile
@@ -40,8 +40,13 @@ RUN mkdir -p /app/full \
40
## Base image
41
FROM ubuntu:$UBUNTU_VERSION AS base
42
43
+ARG TARGETARCH
44
+
45
RUN apt-get update \
- && apt-get install -y libgomp1 curl\
46
+ && apt-get install -y libgomp1 curl \
47
+ && if [ "$TARGETARCH" = "s390x" ]; then \
48
+ apt-get install -y libopenblas-dev; \
49
+ fi \
50
&& apt autoremove -y \
51
&& apt clean -y \
52
&& rm -rf /tmp/* /var/tmp/* \
0 commit comments