contrib/packaging/docker/ubuntu.template
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 10 Oct 2023 10:03:58 +0200
changeset 51043 8ed03f773eac
parent 45968 971424517e17
permissions -rw-r--r--
revlog: skip opener options to pass sparse_revlog value We can directly set the option in the config object now.

FROM ubuntu:%CODENAME%

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

ARG DEBIAN_FRONTEND=noninteractive

ENV TZ=%TZ%

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