From 134dc884ae549f075479f68855fbb3e9d6bd2210 Mon Sep 17 00:00:00 2001 From: Davide Carnemolla Date: Thu, 9 May 2024 16:41:17 +0200 Subject: [PATCH] Fix docker image building (#2400) This PR should fix the issues reported in https://github.com/alshedivat/al-folio/issues/2384 , https://github.com/alshedivat/al-folio/issues/2392 and https://github.com/alshedivat/al-folio/issues/2395. It seems that the ruby docker image is not affected by these problems. --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 59fc1fade201..6843d3d0320b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:latest +FROM ruby:latest ENV DEBIAN_FRONTEND noninteractive Label MAINTAINER Amir Pourmand @@ -6,7 +6,6 @@ Label MAINTAINER Amir Pourmand RUN apt-get update -y && apt-get install -y --no-install-recommends \ locales \ imagemagick \ - ruby-full \ build-essential \ zlib1g-dev \ jupyter-nbconvert \