Skip to content
Snippets Groups Projects
Commit 5b679d9f authored by Erick Hitter's avatar Erick Hitter
Browse files

Add image for Debian Bullseye

parent e2555945
No related branches found
No related tags found
1 merge request!21Add image for Debian Bullseye
Pipeline #4277 failed
This commit is part of merge request !21. Comments created here will be created in the context of that merge request.
......@@ -49,6 +49,24 @@ build-golang-dev:
except:
- master
# Debian Bullseye builds
build-debian-bullseye-build-master:
stage: deploy
script:
- docker build --pull -t "$CI_REGISTRY_IMAGE/debian:bullseye" ./debian/bullseye
- docker push "$CI_REGISTRY_IMAGE/debian:bullseye"
only:
- master
when: manual
build-debian-bullseye-build-dev:
stage: deploy
script:
- docker build --pull -t "$CI_REGISTRY_IMAGE/debian:bullseye-dev" ./debian/bullseye
- docker push "$CI_REGISTRY_IMAGE/debian:bullseye-dev"
except:
- master
# Debian Buster builds
build-debian-buster-build-master:
stage: deploy
......
FROM debian:bulleye-slim
LABEL maintainer="ethitter"
LABEL version="1.0"
RUN echo "deb http://security.debian.org/debian-security bullseye-security main contrib non-free" >> /etc/apt/sources.list
RUN apt-get update \
&& apt-get -y --no-install-recommends install \
apt-transport-https \
lsb-release \
ca-certificates \
curl \
git \
dh-make \
build-essential \
autoconf \
autotools-dev \
libpcre3 \
libpcre3-dev \
libz-dev \
gnupg \
libssl-dev \
devscripts \
lintian \
fakeroot \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment