14 lines
331 B
Docker
14 lines
331 B
Docker
# NAME leenooks/ci-apt
|
|
# VERSION stretch-slim
|
|
|
|
FROM debian:stretch-slim
|
|
|
|
RUN apt-get update && apt-get install -y git \
|
|
build-essential devscripts debhelper dh-make quilt \
|
|
autoconf autotools-dev automake libtool \
|
|
&& apt-get -y autoremove \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
WORKDIR /build
|