Skip to content

Commit

Permalink
feat(superset): add container for superset
Browse files Browse the repository at this point in the history
Signed-off-by: David van der Spek <[email protected]>
  • Loading branch information
davidspek committed May 17, 2023
1 parent 7ccdcb7 commit 108d2ff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
10 changes: 10 additions & 0 deletions superset/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM apache/superset:1.5.0

WORKDIR /home/superset

COPY requirements.txt requirements.txt
RUN pip freeze | grep -i apache-superset > protected-packages.txt \
&& pip install --constraint ./protected-packages.txt --no-cache-dir -r ./requirements.txt \
&& rm -rf ./protected-packages.txt ./requirements.txt

WORKDIR /app
4 changes: 4 additions & 0 deletions superset/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Authlib==1.2.0
pybigquery==0.10.2
typing-extensions==3.10.0.0
snowflake-sqlalchemy==1.2.4

0 comments on commit 108d2ff

Please sign in to comment.