Skip to content
Snippets Groups Projects
Commit eb75d0f1 authored by EXT Soraya Arias's avatar EXT Soraya Arias
Browse files

Set min value for python and add nodejs dependency for jupyterlab

parent ffb19fd8
No related branches found
No related tags found
No related merge requests found
# #
# #
ARG PYTHON_VERSION=3.8 ARG PYTHON_VERSION=3.7
ARG docker_image_base=python:${PYTHON_VERSION}-slim ARG docker_image_base=python:${PYTHON_VERSION}-slim
FROM ${docker_image_base} FROM ${docker_image_base}
...@@ -11,8 +11,8 @@ ENV TZ=Europe/Paris LANG=C.UTF-8 LC_ALL=C.UTF-8 DEBIAN_FRONTEND=noninteractive ...@@ -11,8 +11,8 @@ ENV TZ=Europe/Paris LANG=C.UTF-8 LC_ALL=C.UTF-8 DEBIAN_FRONTEND=noninteractive
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
apt update --fix-missing && \ apt update --fix-missing && \
apt install -y --no-install-recommends apt-utils \ apt install -y --no-install-recommends apt-utils &&\
apt install wget curl git \ apt install -y wget curl git \
python3-venv python3-pip && \ python3-venv python3-pip && \
apt -y dist-upgrade && \ apt -y dist-upgrade && \
curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \ curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment