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
329 B
Docker
Raw Permalink Normal View History

2018-10-19 10:05:45 +00:00
# NAME leenooks/ci-apt
2020-05-22 06:40:29 +00:00
# VERSION buster-slim
2018-10-19 10:05:45 +00:00
2020-05-22 06:40:29 +00:00
FROM debian:buster-slim
2018-10-19 10:05:45 +00:00
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