Skip to content

Commit 9152739

Browse files
committed
specify ubuntu version
1 parent 7f57221 commit 9152739

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

dockerfiles/CondaDockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# We will use Ubuntu for our image
2-
FROM ubuntu:latest
2+
FROM ubuntu:22.04
33

44
# Updating Ubuntu packages
55

66
ARG CLOJURE_TOOLS_VERSION=1.10.1.507
77

8+
ENV DEBIAN_FRONTEND=noninteractive
89

910
RUN apt-get -qq update && apt-get -qq -y install curl wget bzip2 openjdk-8-jdk-headless \
1011
&& curl -sSL https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o /tmp/miniconda.sh \

dockerfiles/Py38Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# We will use Ubuntu for our image
2-
FROM ubuntu:latest
2+
FROM ubuntu:22.04
33

44
# Updating Ubuntu packages
55

66
ARG CLOJURE_TOOLS_VERSION=1.10.1.507
77

8+
ENV DEBIAN_FRONTEND=noninteractive
89

910
RUN apt-get -qq update && apt-get -qq -y install curl wget bzip2 openjdk-8-jdk-headless python3.8 libpython3.8 python3-pip \
1011
&& curl -o install-clojure https://download.clojure.org/install/linux-install-${CLOJURE_TOOLS_VERSION}.sh \

dockerfiles/Py39Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# We will use Ubuntu for our image
2-
FROM ubuntu:latest
2+
FROM ubuntu:22.04
33

44
# Updating Ubuntu packages
55

66
ARG CLOJURE_TOOLS_VERSION=1.10.1.507
77

8+
ENV DEBIAN_FRONTEND=noninteractive
9+
810
RUN apt-get -qq update \
911
&& apt install -y software-properties-common \
1012
&& add-apt-repository -y ppa:deadsnakes/ppa

0 commit comments

Comments
 (0)