You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rtpengine/.github/actions/debpkg-buster/Dockerfile

14 lines
368 B

FROM debian:buster
COPY entrypoint.sh /entrypoint.sh
# avoid "debconf: (TERM is not set, so the dialog frontend is not usable.)"
ENV DEBIAN_FRONTEND noninteractive
# disable man-db to speed up builds
RUN echo 'man-db man-db/auto-update boolean false' | debconf-set-selections
RUN apt-get update && apt-get -y install build-essential
ENTRYPOINT ["/entrypoint.sh"]