self build with nghttp2

This commit is contained in:
Wolfgang Hottgenroth 2021-10-26 14:00:24 +02:00
parent 404ffa55da
commit 1573d7bb53
3 changed files with 51 additions and 4 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
*~
.*~
*.swp
.*.swp
tmp/

View File

@ -1,5 +1,22 @@
stages:
- prepare
- check
- build
include: include:
- project: dockerized/commons - project: dockerized/commons
ref: master ref: master
file: gitlab-ci-template.yml file: gitlab-ci-template.yml
prepare:
image: registry.hottis.de/dockerized/base-build-env:latest
stage: prepare
tags:
- hottis
- linux
- docker
script:
- mkdir tmp
- cd tmp
- git clone https://github.com/NLnetLabs/unbound.git

View File

@ -1,14 +1,39 @@
FROM alpine:3.13 AS builder
COPY tmp/unbound/ tmp/unbound
RUN \
apk update && \
apk add alpine-sdk && \
apk add nghttp2-libs && \
apk add nghttp2-dev && \
apk add openssl-dev && \
apk add expat-dev && \
apk add libevent-dev && \
cd tmp/unbound && \
./configure --with-libnghttp2 --with-libevent --prefix /opt/unbound && \
make && \
make install
FROM alpine:3.13 FROM alpine:3.13
COPY --from=builder /opt/unbound/ /opt/unbound
RUN \ RUN \
apk add --no-cache unbound && \ apk add --no-cache openssl && \
mv /etc/unbound/unbound.conf /etc/unbound/unbound.conf-dist apk add --no-cache nghttp2-libs && \
apk add --no-cache expat && \
apk add --no-cache libevent && \
mv /opt/unbound/etc/unbound/unbound.conf /opt/unbound/etc/unbound/unbound.conf-dist && \
ln -s /opt/unbound/etc/unbound /etc/unbound
COPY unbound.conf /etc/unbound/unbound.conf COPY unbound.conf /opt/unbound/etc/unbound/unbound.conf
EXPOSE 53/udp EXPOSE 53/udp
EXPOSE 53/tcp
EXPOSE 853/tcp
VOLUME /etc/unbound VOLUME /opt/unbound/etc/unbound
CMD [ "/usr/sbin/unbound" ] CMD [ "/usr/sbin/unbound" ]