diff --git a/dockerfiles/CondaDockerfile b/dockerfiles/CondaDockerfile index fdba41d..4cc756f 100644 --- a/dockerfiles/CondaDockerfile +++ b/dockerfiles/CondaDockerfile @@ -1,10 +1,11 @@ # We will use Ubuntu for our image -FROM ubuntu:latest +FROM ubuntu:22.04 # Updating Ubuntu packages ARG CLOJURE_TOOLS_VERSION=1.10.1.507 +ENV DEBIAN_FRONTEND=noninteractive RUN apt-get -qq update && apt-get -qq -y install curl wget bzip2 openjdk-8-jdk-headless \ && curl -sSL https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o /tmp/miniconda.sh \ diff --git a/dockerfiles/Py38Dockerfile b/dockerfiles/Py38Dockerfile index 41ec6a5..0d3fd8c 100644 --- a/dockerfiles/Py38Dockerfile +++ b/dockerfiles/Py38Dockerfile @@ -1,10 +1,11 @@ # We will use Ubuntu for our image -FROM ubuntu:latest +FROM ubuntu:22.04 # Updating Ubuntu packages ARG CLOJURE_TOOLS_VERSION=1.10.1.507 +ENV DEBIAN_FRONTEND=noninteractive RUN apt-get -qq update && apt-get -qq -y install curl wget bzip2 openjdk-8-jdk-headless python3.8 libpython3.8 python3-pip \ && curl -o install-clojure https://download.clojure.org/install/linux-install-${CLOJURE_TOOLS_VERSION}.sh \ diff --git a/dockerfiles/Py39Dockerfile b/dockerfiles/Py39Dockerfile index f071037..bf2675f 100644 --- a/dockerfiles/Py39Dockerfile +++ b/dockerfiles/Py39Dockerfile @@ -1,10 +1,12 @@ # We will use Ubuntu for our image -FROM ubuntu:latest +FROM ubuntu:22.04 # Updating Ubuntu packages ARG CLOJURE_TOOLS_VERSION=1.10.1.507 +ENV DEBIAN_FRONTEND=noninteractive + RUN apt-get -qq update \ && apt install -y software-properties-common \ && add-apt-repository -y ppa:deadsnakes/ppa