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 e9c3f89 commit 691c1e4Copy full SHA for 691c1e4
1 file changed
Dockerfile
@@ -47,13 +47,13 @@ case $(uname -m) in
47
esac
48
49
for PKG in clickhouse-common-static clickhouse-client; do
50
- curl -f0 "https://github.com/ClickHouse/ClickHouse/releases/download/\${TAG}/\${PKG}-\${VERSION}-\${ARCH}.tgz"
+ curl -L -o ${PKG}.tgz "https://github.com/ClickHouse/ClickHouse/releases/download/\${TAG}/\${PKG}-\${VERSION}-\${ARCH}.tgz"
51
done
52
53
-tar -xzvf "clickhouse-common-static-\${VERSION}-\${ARCH}.tgz"
+tar -xzvf "clickhouse-common-static.tgz"
54
clickhouse-common-static-\${VERSION}/install/doinst.sh
55
56
-tar -xzvf "clickhouse-client-\${VERSION}-\${ARCH}.tgz"
+tar -xzvf "clickhouse-client.tgz"
57
clickhouse-client-\${VERSION}/install/doinst.sh
58
EOF
59
0 commit comments