This is an automated email from the ASF dual-hosted git repository.
benjobs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampark.git
The following commit(s) were added to refs/heads/dev by this push:
new 7d8b1743a fix file not found error on docker image building (#2758)
7d8b1743a is described below
commit 7d8b1743a5e8bd80245330dfcfa3f13843e74893
Author: CodingGPT <[email protected]>
AuthorDate: Thu May 18 10:36:24 2023 +0800
fix file not found error on docker image building (#2758)
---
deploy/docker/Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/deploy/docker/Dockerfile b/deploy/docker/Dockerfile
index 6e58347c4..d216712e5 100644
--- a/deploy/docker/Dockerfile
+++ b/deploy/docker/Dockerfile
@@ -18,8 +18,8 @@
FROM alpine:3.16 as deps-stage
COPY . /
WORKDIR /
-RUN tar zxvf dist/apache-streampark_*-*-bin.tar.gz \
-&& mv apache-streampark_*-*-bin streampark
+RUN tar zxvf dist/apache-streampark*-*-bin.tar.gz \
+&& mv apache-streampark*-*-bin streampark
FROM docker:dind
WORKDIR /streampark