wit-network-config/Dockerfile

17 lines
539 B
Docker
Raw Permalink Normal View History

2018-08-16 15:48:00 -05:00
FROM debian:sid
MAINTAINER "toby" <toby@wit.com>
RUN apt-get update
RUN apt-get -y install curl gnupg ca-certificates
2018-08-16 15:48:00 -05:00
RUN echo 'deb https://mirrors.wit.com/debian sid main contrib non-free' > /etc/apt/sources.list && \
echo 'deb https://mirrors.wit.com/debcore sid main' >> /etc/apt/sources.list && \
curl https://mirrors.wit.com/debcore/public.key | apt-key add - && \
apt-get update
RUN apt-get -y install debootstrap xz-utils cpio gzip devscripts build-essential lintian debhelper config-package-dev
RUN apt-get clean