view contrib/packaging/docker/debian.template @ 39868:b06303a208be

lfs: drop unused import A recent change dropped the last user of this module. Differential Revision: https://phab.mercurial-scm.org/D4744
author Gregory Szorc <gregory.szorc@gmail.com>
date Wed, 26 Sep 2018 11:27:41 -0700
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