Compare commits

2 Commits

Author SHA1 Message Date
7c701cfd79 Set target repository 2022-08-25 11:09:42 +02:00
c3db123a7a add rsync to Dockerfile 2022-08-25 10:38:48 +02:00
2 changed files with 4 additions and 4 deletions

View File

@ -7,6 +7,7 @@ variables:
BUILD_CONTEXT: ci_container
BUILD_FILE: Dockerfile
IMAGE_NAME: pkg_build-exim-encrypt-dlfunc/bullseye
TARGET_REPOSITORY: "bullseye"
stages:

View File

@ -18,18 +18,17 @@ RUN apt-get update; \
openssl \
pkg-config \
python3-pip \
libxml2-utils; \
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get install --no-install-recommends -y \
libxml2-utils \
debhelper \
debsigs \
devscripts \
dh-make \
git-buildpackage \
gpgv1 \
meson; \
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get install --no-install-recommends -y \
meson \
less \
mc \
rsync \
openssh-client \
vim; \
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get clean; \