9 lines
184 B
Docker
9 lines
184 B
Docker
FROM apache/superset:3.0.2
|
|
|
|
USER root
|
|
|
|
COPY --chmod=777 superset_config.py /app/
|
|
ENV SUPERSET_CONFIG_PATH /app/superset_config.py
|
|
|
|
USER superset
|
|
ENTRYPOINT [ "/usr/bin/run-server.sh" ] |