Skip to content

Commit

Permalink
give permission to python path
Browse files Browse the repository at this point in the history
  • Loading branch information
eschutho committed Dec 10, 2024
1 parent d38e0dd commit b422753
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ RUN --mount=type=bind,source=./docker,target=/docker \
superset-frontend \
apache_superset.egg-info \
requirements \
{SUPERSET_HOME} \
&& useradd --user-group -d ${SUPERSET_HOME} -m --no-log-init --shell /bin/bash superset \
&& /docker/apt-install.sh \
curl \
Expand All @@ -121,8 +122,8 @@ RUN --mount=type=bind,source=./docker,target=/docker \
libecpg-dev \
libldap2-dev \
&& touch superset/static/version_info.json \
&& chown -R superset:superset /app \
&& chmod -R 775 /app \
&& chown -R superset:superset ${PYTHONPATH} ${SUPERSET_HOME} \
&& chmod -R 775 ${PYTHONPATH} ${SUPERSET_HOME} \
&& chown -R superset:superset ./* \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*

Expand Down

0 comments on commit b422753

Please sign in to comment.