-
Notifications
You must be signed in to change notification settings - Fork 99
/
Dockerfile
57 lines (49 loc) · 1.4 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Build stage.
FROM debian:bullseye AS builder
ARG DEBIAN_FRONTEND=noninteractive
RUN \
apt-get update && \
apt-get -y install \
autoconf \
build-essential \
ca-certificates \
cmake \
libgetdns-dev \
libidn2-0-dev \
libssl-dev \
libunbound-dev \
libyaml-dev \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/
COPY . /usr/src/stubby/
WORKDIR /usr/src/stubby/
RUN cmake .
RUN make
# Final image.
FROM debian:bullseye
ARG DEBIAN_FRONTEND=noninteractive
RUN \
apt-get update && \
apt-get -y install \
ca-certificates \
libgetdns10 \
libidn2-0 \
libunbound8 \
libyaml-0-2 \
openssl \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/
COPY --from=builder /usr/src/stubby /usr/local/bin
COPY --from=builder /usr/src/stubby/stubby.yml.example /usr/local/etc/stubby/stubby.yml
# Modify provided configuration file to listen on '0.0.0.0'. This is
# required for receiving incoming connections from outside the container.
RUN sed -i 's/^listen_addresses:/listen_addresses:\n - 0.0.0.0/' \
/usr/local/etc/stubby/stubby.yml
# Check if previous step succeeded (build will fail otherwise).
RUN grep --before-context 1 --after-context 3 '^ - 0.0.0.0$' \
/usr/local/etc/stubby/stubby.yml
# Notice: since program is not catching TERM signal, it will be forcefully
# killed by Docker runtime on stop after timeout (see issue #188).
ENTRYPOINT [ "stubby" ]