This repository has been archived on 2024-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
wdk/Anhang/Docker/JupyLab/Dockerfile
2022-06-02 15:27:43 +02:00

23 lines
512 B
Docker

# Start from a core stack version
FROM jupyter/scipy-notebook:latest
USER root
# RUN apt-get install -y apt-transport-https
RUN apt-get update --yes && \
apt-get install --yes \
--no-install-recommends \
mysql-client \
curl
# && \
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
USER ${NB_UID}
# install necessary python modules
RUN pip3 install openpyxl pymysql tabulate influxdb-client beautifulsoup4
RUN fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"