From fede3c04f62870065a9f5af004b6068f8a41d312 Mon Sep 17 00:00:00 2001 From: Nanda Lopes Date: Thu, 26 Nov 2020 19:35:42 -0300 Subject: [PATCH 1/3] feat(test): Ubuntu Bionic Beaver docker --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 918165fb..2ddb6d24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:16.04 +FROM ubuntu:18.04 LABEL maintainer="Luiz Filho " # Let the container know that there is no tty From ab2cee9f59179667ebffb4d93bc511c2638cf1bf Mon Sep 17 00:00:00 2001 From: Nanda Lopes Date: Wed, 2 Dec 2020 11:00:51 -0300 Subject: [PATCH 2/3] fix(test) interactive rake install --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2ddb6d24..fd2f8d6f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,6 @@ FROM ubuntu:18.04 LABEL maintainer="Luiz Filho " -# Let the container know that there is no tty -ENV DEBIAN_FRONTEND noninteractive ENV TERM xterm-256color # Bootstrapping packages needed for installation @@ -23,7 +21,8 @@ RUN localedef -i en_US -f UTF-8 en_US.UTF-8 && \ # Install dependencies # `universe` is needed for ruby # `security` is needed for fontconfig and fc-cache -RUN \ +# Let the container know that there is no tty +RUN DEBIAN_FRONTEND=noninteractive \ add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe security" && \ add-apt-repository ppa:aacebedo/fasd && \ apt-get update && \ From a2e0ccd171b5f9bb69b154e80a549a3bbed1fd8e Mon Sep 17 00:00:00 2001 From: Nanda Lopes Date: Tue, 15 Dec 2020 16:35:27 -0300 Subject: [PATCH 3/3] Fix apt error --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fd2f8d6f..b8eca167 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,6 @@ RUN localedef -i en_US -f UTF-8 en_US.UTF-8 && \ # `security` is needed for fontconfig and fc-cache # Let the container know that there is no tty RUN DEBIAN_FRONTEND=noninteractive \ - add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe security" && \ add-apt-repository ppa:aacebedo/fasd && \ apt-get update && \ apt-get -yqq install \