view contrib/packaging/docker/debian.template @ 43660:303bf312d5ed

packaging: convert to UNIX line endings I must have my editor on Windows configured incorrectly because I submitted patches with Windows line endings :( # skip-blame whitespace only line ending changes Differential Revision: https://phab.mercurial-scm.org/D7421
author Gregory Szorc <gregory.szorc@gmail.com>
date Thu, 14 Nov 2019 20:40:54 -0800
parents c8ef9d897e14
children
line wrap: on
line source

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