Skip to content

Commit 691c1e4

Browse files
committed
[wip] fix Dockerfile
1 parent e9c3f89 commit 691c1e4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ case $(uname -m) in
4747
esac
4848

4949
for PKG in clickhouse-common-static clickhouse-client; do
50-
curl -f0 "https://github.com/ClickHouse/ClickHouse/releases/download/\${TAG}/\${PKG}-\${VERSION}-\${ARCH}.tgz"
50+
curl -L -o ${PKG}.tgz "https://github.com/ClickHouse/ClickHouse/releases/download/\${TAG}/\${PKG}-\${VERSION}-\${ARCH}.tgz"
5151
done
5252

53-
tar -xzvf "clickhouse-common-static-\${VERSION}-\${ARCH}.tgz"
53+
tar -xzvf "clickhouse-common-static.tgz"
5454
clickhouse-common-static-\${VERSION}/install/doinst.sh
5555

56-
tar -xzvf "clickhouse-client-\${VERSION}-\${ARCH}.tgz"
56+
tar -xzvf "clickhouse-client.tgz"
5757
clickhouse-client-\${VERSION}/install/doinst.sh
5858
EOF
5959

0 commit comments

Comments
 (0)