From ff8fb8a18ba27f778aa8053dd2880d78eafd5f23 Mon Sep 17 00:00:00 2001 From: Renan Castro Date: Fri, 23 Apr 2021 23:17:07 -0300 Subject: [PATCH] Fix ubuntu dockerfile --- ubuntu/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index 9c292cb..3b82a57 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -1,11 +1,11 @@ -FROM ubuntu:20.10 +FROM ubuntu:20.04 ENV DEBIAN_FRONTEND noninteractive -ENV UBUNTU_VERSION 20.10 +ENV UBUNTU_VERSION 20.04 RUN apt-get update && \ apt-get --yes upgrade && \ - apt-get install -y curl ca-certificates && \ + apt-get install -y curl ca-certificates python-is-python2 && \ rm -rf /var/lib/apt/lists/* # Install some dependencies that Galaxy users have requested for their apps. We