8 lines
392 B
Docker
8 lines
392 B
Docker
FROM apache/superset:latest
|
|
USER root
|
|
RUN pip3 install --no-cache-dir --target=/app/.venv/lib/python3.10/site-packages --no-deps \
|
|
sqlalchemy-trino==0.5.0 trino==0.337.0 && \
|
|
pip3 install --no-cache-dir --target=/app/.venv/lib/python3.10/site-packages \
|
|
requests lz4 orjson python-dateutil pytz tzlocal zstandard charset-normalizer idna urllib3 certifi six greenlet
|
|
USER superset
|