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 && \