17 lines
539 B
Docker
17 lines
539 B
Docker
FROM debian:sid
|
|
|
|
MAINTAINER "toby" <toby@wit.com>
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get -y install curl gnupg ca-certificates
|
|
|
|
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
|