This is an automated email from the ASF dual-hosted git repository.
yuxia pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git
The following commit(s) were added to refs/heads/main by this push:
new fbf50fdb7 [hotfix] Fix docker file build exception (#1802)
fbf50fdb7 is described below
commit fbf50fdb7689e27b4b03757fe44038992e99897e
Author: yuxia Luo <[email protected]>
AuthorDate: Fri Feb 6 14:18:29 2026 +0800
[hotfix] Fix docker file build exception (#1802)
---
docker/fluss/Dockerfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docker/fluss/Dockerfile b/docker/fluss/Dockerfile
index a2963ef79..ad4f5b267 100644
--- a/docker/fluss/Dockerfile
+++ b/docker/fluss/Dockerfile
@@ -28,9 +28,6 @@ RUN set -ex; \
apt-get -y install gpg libsnappy1v5 gettext-base libjemalloc-dev; \
rm -rf /var/lib/apt/lists/*
-# Please copy build-target to the docker dictory first, then copy to the image.
-COPY --chown=fluss:fluss build-target/ /opt/fluss/
-
# Prepare environment
ENV FLUSS_HOME=/opt/fluss
ENV PATH=$FLUSS_HOME/bin:$PATH
@@ -38,6 +35,9 @@ RUN groupadd --system --gid=9999 fluss && \
useradd --system --home-dir $FLUSS_HOME --uid=9999 --gid=fluss fluss
WORKDIR $FLUSS_HOME
+# Please copy build-target to the docker dictory first, then copy to the image.
+COPY --chown=fluss:fluss build-target/ /opt/fluss/
+
RUN ["chown", "-R", "fluss:fluss", "."]
COPY docker-entrypoint.sh /
RUN ["chmod", "+x", "/docker-entrypoint.sh"]