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 19c1148 commit 1ca6a10Copy full SHA for 1ca6a10
docker/dispatcher/Dockerfile
@@ -5,7 +5,11 @@ ARG TARGETPLATFORM
5
6
WORKDIR /app
7
8
-RUN apk --no-cache add ca-certificates tzdata curl && \
+RUN apt-get update && \
9
+ apt-get install -y --no-install-recommends \
10
+ ca-certificates \
11
+ tzdata \
12
+ curl && \
13
case "$TARGETPLATFORM" in \
14
"linux/arm64") URL="https://github.com/ResearchComputer/OpenComputeFramework/releases/download/${VERSION}/ocf-arm64" ;; \
15
*) URL="https://github.com/ResearchComputer/OpenComputeFramework/releases/download/${VERSION}/ocf-amd64" ;; \
0 commit comments