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
2022-10-16 11:03:58 +11:00

14 lines
333 B
Docker

# NAME leenooks/ci-apt
# VERSION bullseye-slim
FROM debian:bullseye-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