Skip to content
Snippets Groups Projects
Unverified Commit 9415c75a authored by aviau's avatar aviau
Browse files

dockerfiles: ENV DEBIAN_FRONTEND noninteractive

Setting DEBIAN_FRONTEND to noninteractive prevents apt from asking
questions when configuring packages.

Change-Id: I8c47ae133e85e0b61c7ac6035f8a75107c0a2177
Tuleap: #885
parent dc67e9a6
No related branches found
No related tags found
No related merge requests found
FROM debian:8
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get clean
RUN apt-get update && \
apt-get install -y vim devscripts equivs
......
FROM savoirfairelinux/ring-debian32:8
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get clean
RUN apt-get update && \
apt-get install -y vim devscripts equivs
......
FROM debian:stretch
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get clean
RUN apt-get update && \
apt-get install -y vim devscripts
......
FROM savoirfairelinux/ring-debian32:9
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get clean
RUN apt-get update && \
apt-get install -y vim devscripts
......
FROM ubuntu:14.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get clean
RUN apt-get update && \
apt-get install -y vim devscripts equivs
......
FROM savoirfairelinux/ring-ubuntu32:14.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get clean
RUN apt-get update && \
apt-get install -y vim devscripts equivs
......
FROM ubuntu:15.10
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get clean
RUN apt-get update && \
apt-get install -y vim devscripts equivs
......
FROM savoirfairelinux/ring-ubuntu32:15.10
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get clean
RUN apt-get update && \
apt-get install -y vim devscripts equivs
......
FROM ubuntu:16.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get clean
RUN apt-get update && \
apt-get install -y vim devscripts equivs
......
FROM savoirfairelinux/ring-ubuntu32:16.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get clean
RUN apt-get update && \
apt-get install -y vim devscripts equivs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment