contrib/packaging/docker/debian.template
author Gregory Szorc <gregory.szorc@gmail.com>
Sun, 03 Mar 2019 09:10:52 -0800
changeset 41848 27eca52b1874
parent 38459 c8ef9d897e14
permissions -rw-r--r--
inno: remove cacerts.pem from documentation The inno distribution no longer includes cacert.pem as of ca1ad8ef38be22 (April 2015). The docs were never updated. Differential Revision: https://phab.mercurial-scm.org/D6061

FROM debian:%CODENAME%

RUN groupadd -g 1000 build && \
    useradd -u 1000 -g 1000 -s /bin/bash -d /build -m build

RUN apt-get update && apt-get install -y \
  build-essential \
  debhelper \
  devscripts \
  dh-python \
  less \
  python \
  python-all-dev \
  python-docutils \
  unzip \
  zip