Skip to content

Commit

Permalink
750
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Dec 11, 2024
1 parent 9b7bf6a commit 728c3d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ RUN mkdir -p ${PYTHONPATH} \
COPY pyproject.toml setup.py MANIFEST.in README.md ./
COPY superset-frontend/package.json superset-frontend/
COPY scripts/check-env.py scripts/
COPY --chmod=755 docker/*.sh /app/docker/
COPY --chmod=755 ./docker/run-server.sh /usr/bin/
COPY --chmod=750 docker/*.sh /app/docker/
COPY --chmod=750 ./docker/run-server.sh /usr/bin/

# Some debian libs
RUN /app/docker/apt-install.sh \
Expand Down Expand Up @@ -168,7 +168,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
uv pip install . && \
/app/docker/docker-translate.sh

RUN chown -R superset:superset /app && chmod -R 775 /app
RUN chown -R superset:superset /app && chmod -R 750 /app
USER superset

######################################################################
Expand All @@ -195,7 +195,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
# Compile translations
RUN /app/docker/docker-translate.sh

RUN chown -R superset:superset /app && chmod -R 775 /app
RUN chown -R superset:superset /app && chmod -R 750 /app
USER superset

######################################################################
Expand Down

0 comments on commit 728c3d9

Please sign in to comment.