This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch vanilla_migrate
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/vanilla_migrate by this push:
new e121ec494a 755
e121ec494a is described below
commit e121ec494aea8119c7e9d4c15ad4fb3b09a02fbb
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Tue Jan 28 01:03:46 2025 -0800
755
---
Dockerfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index 94e527a8d1..6842a9b4ce 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -117,7 +117,7 @@ ENV LANG=C.UTF-8 \
RUN useradd --user-group -d ${SUPERSET_HOME} -m --no-log-init --shell
/bin/bash superset
# Some bash scripts needed throughout the layers
-COPY --chown=superset:superset --chmod=555 docker/*.sh /app/docker/
+COPY --chown=superset:superset --chmod=755 docker/*.sh /app/docker/
RUN pip install --no-cache-dir --upgrade uv
@@ -160,7 +160,7 @@ RUN if [ "$BUILD_TRANSLATIONS" = "true" ]; then \
######################################################################
FROM python-base AS python-common
# Copy the entrypoints, make them executable in userspace
-COPY --chown=superset:superset --chmod=555 docker/entrypoints
/app/docker/entrypoints
+COPY --chown=superset:superset --chmod=755 docker/entrypoints
/app/docker/entrypoints
WORKDIR /app
# Set up necessary directories and user
@@ -180,7 +180,7 @@ COPY superset-frontend/package.json superset-frontend/
COPY scripts/check-env.py scripts/
# keeping for backward compatibility
-COPY --chown=superset:superset --chmod=555 ./docker/entrypoints/run-server.sh
/usr/bin/
+COPY --chown=superset:superset --chmod=755 ./docker/entrypoints/run-server.sh
/usr/bin/
# Some debian libs
RUN /app/docker/apt-install.sh \