This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
ci-apt/Dockerfile
2018-10-19 21:05:45 +11:00

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