Skip to content

Commit f644893

Browse files
authored
Update Dockerfile
Install gcc and build-essentials so pandas will compile.
1 parent 1636358 commit f644893

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

Dockerfile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,11 @@ FROM $BASE_CONTAINER
66

77
LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
88

9-
# Fix: https://github.com/hadolint/hadolint/wiki/DL4006
10-
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
11-
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
12-
139
USER root
1410

1511
# Install all OS dependencies for fully functional notebook server
1612
RUN apt-get update --yes && \
17-
apt-get install --yes --no-install-recommends
13+
apt-get install gcc build-essential --yes --no-install-recommends
1814

1915
RUN python3 -m pip install --upgrade six==1.15.0 attackcti==0.3.8 pandas==1.3.5 altair vega
2016

@@ -25,4 +21,4 @@ COPY docs/presentations ${HOME}/docs/presentations
2521
# Switch back to jovyan to avoid accidental container runs as root
2622
USER ${NB_UID}
2723

28-
WORKDIR ${HOME}
24+
WORKDIR ${HOME}

0 commit comments

Comments
 (0)