adding docker file for build container

This commit is contained in:
root 2018-08-16 20:48:00 +00:00
parent be1482254d
commit 95e71c9eb9
1 changed files with 12 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM debian:sid
MAINTAINER "toby" <toby@wit.com>
RUN apt-get update && 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 devscripts build-essential lintian debhelper config-package-dev && apt-get clean