self build with nghttp2
This commit is contained in:
parent
404ffa55da
commit
1573d7bb53
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
*~
|
||||
.*~
|
||||
*.swp
|
||||
.*.swp
|
||||
tmp/
|
@ -1,5 +1,22 @@
|
||||
stages:
|
||||
- prepare
|
||||
- check
|
||||
- build
|
||||
|
||||
include:
|
||||
- project: dockerized/commons
|
||||
ref: master
|
||||
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
|
||||
|
||||
|
33
Dockerfile
33
Dockerfile
@ -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
|
||||
COPY --from=builder /opt/unbound/ /opt/unbound
|
||||
|
||||
RUN \
|
||||
apk add --no-cache unbound && \
|
||||
mv /etc/unbound/unbound.conf /etc/unbound/unbound.conf-dist
|
||||
apk add --no-cache openssl && \
|
||||
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/tcp
|
||||
EXPOSE 853/tcp
|
||||
|
||||
VOLUME /etc/unbound
|
||||
VOLUME /opt/unbound/etc/unbound
|
||||
|
||||
CMD [ "/usr/sbin/unbound" ]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user