Skip to content

Commit

Permalink
updated Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyaven committed Oct 20, 2023
1 parent f618e03 commit 8fa92e3
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
FROM stackql/stackql-jupyter-demo:latest AS stackql
FROM stackql/stackql:latest AS stackql
FROM mcr.microsoft.com/devcontainers/universal:2
COPY --from=stackql /srv/stackql/stackql /usr/local/bin/stackql
COPY --from=stackql /srv/stackql/stackql /usr/local/bin/stackql
# set up matplotlib temp dir
RUN mkdir -p /tmp/matplotlib
RUN chmod 777 /tmp/matplotlib
ENV MPLCONFIGDIR=/tmp/matplotlib
ENV PYDEVD_DISABLE_FILE_VALIDATION=1
ENV PYTHON_PACKAGES="\
pystackql \
matplotlib \
pandas \
mplfinance \
psycopg2-binary \
nest_asyncio \
plotly \
ipytree \
nbformat \
networkx \
"
RUN pip install --upgrade pip \
&& pip install --no-cache-dir $PYTHON_PACKAGES

0 comments on commit 8fa92e3

Please sign in to comment.