This is an automated email from the ASF dual-hosted git repository. bzp2010 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/apisix.git
The following commit(s) were added to refs/heads/master by this push: new 4ddb22197 fix: access to the apisix dashboard in dev returns 404 (#12376) 4ddb22197 is described below commit 4ddb22197a27f5d2dfc9557d628e23500be305e7 Author: Zeping Bai <bzp2...@apache.org> AuthorDate: Tue Jun 24 20:19:24 2025 +0800 fix: access to the apisix dashboard in dev returns 404 (#12376) --- .requirements | 1 + docker/debian-dev/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.requirements b/.requirements index d9c23320d..ebf9ef2ab 100644 --- a/.requirements +++ b/.requirements @@ -18,3 +18,4 @@ APISIX_PACKAGE_NAME=apisix APISIX_RUNTIME=1.3.2 +APISIX_DASHBOARD_COMMIT=70712bd33f55f7979d4cb73a898e9778e0fbfe8b diff --git a/docker/debian-dev/Dockerfile b/docker/debian-dev/Dockerfile index 5bb16a9f8..20447c40a 100644 --- a/docker/debian-dev/Dockerfile +++ b/docker/debian-dev/Dockerfile @@ -54,7 +54,7 @@ RUN apt-get -y update --fix-missing \ COPY --from=build /usr/local/apisix /usr/local/apisix COPY --from=build /usr/local/openresty /usr/local/openresty COPY --from=build /usr/bin/apisix /usr/bin/apisix -COPY ./ui/* /usr/local/apisix/ui/ +COPY --chown=nobody:root ui/ /usr/local/apisix/ui/ COPY ${INSTALL_BROTLI} /install-brotli.sh RUN chmod +x /install-brotli.sh \