Skip to content

Commit

Permalink
Merge pull request #149 from auxten/master
Browse files Browse the repository at this point in the history
Fix hive support
  • Loading branch information
amancevice authored Dec 5, 2019
2 parents 24d4811 + bff15fa commit eeaf000
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ ENV GUNICORN_CMD_ARGS="--workers ${GUNICORN_WORKERS} --threads ${GUNICORN_THREAD
# Create superset user & install dependencies
WORKDIR /tmp/superset
COPY --from=dist /tmp/superset.tar.gz .
RUN useradd -U -m superset && \
RUN groupadd supergroup && \
useradd -U -m -G supergroup superset && \
mkdir -p /etc/superset && \
mkdir -p ${SUPERSET_HOME} && \
chown -R superset:superset /etc/superset && \
Expand Down
4 changes: 3 additions & 1 deletion requirements-db.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ psycopg2==2.7.6.1
pyathena==1.5.1
pybigquery==0.4.10
pydruid==0.5.7
pyhive==0.5.1
pyhive==0.6.1
pyldap==2.4.28
pymssql==2.1.4
redis==3.2.1
sasl==0.2.1
snowflake-sqlalchemy==1.1.16
sqlalchemy-clickhouse==0.1.5.post0
sqlalchemy-redshift==0.7.1
thrift-sasl==0.3.0

0 comments on commit eeaf000

Please sign in to comment.