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

14 lines
331 B
Docker
Raw Normal View History

2018-10-19 10:05:45 +00:00
# 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