Skip to content

Commit

Permalink
⬆️ Update to Debian 10
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewVance committed Jul 23, 2019
1 parent a0f95a0 commit af5641c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions stubby/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stretch as builder
FROM debian:buster as builder
LABEL maintainer="Matthew Vance"

ENV version_openssl=openssl-1.1.1a \
Expand Down Expand Up @@ -33,7 +33,7 @@ RUN set -e -x && \
/var/tmp/* \
/var/lib/apt/lists/*

FROM debian:stretch
FROM debian:buster
LABEL maintainer="Matthew Vance"

EXPOSE 8053/udp
Expand All @@ -50,7 +50,7 @@ RUN set -e -x && \
dns-root-data \
ldnsutils \
libev4 \
libevent-core-2.0.5 \
libevent-core-2.1-6 \
libidn11 \
libuv1 \
libyaml-0-2 && \
Expand Down
12 changes: 6 additions & 6 deletions unbound/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stretch as openssl
FROM debian:buster as openssl
LABEL maintainer="Matthew Vance"

ENV version_openssl=openssl-1.1.1c \
Expand Down Expand Up @@ -33,7 +33,7 @@ RUN set -e -x && \
/var/tmp/* \
/var/lib/apt/lists/*

FROM debian:stretch as unbound
FROM debian:buster as unbound
LABEL maintainer="Matthew Vance"

ENV unbound_version=1.9.1 \
Expand All @@ -50,7 +50,7 @@ RUN build_deps="ca-certificates curl gcc libc-dev libevent-dev libexpat1-dev mak
$build_deps \
bsdmainutils \
ldnsutils \
libevent-2.0 \
libevent-2.1-6 \
libexpat1 && \
curl -sSL "${unbound_download_url}" -o unbound.tar.gz && \
echo "${unbound_sha256} *unbound.tar.gz" | sha256sum -c - && \
Expand All @@ -77,12 +77,12 @@ RUN build_deps="ca-certificates curl gcc libc-dev libevent-dev libexpat1-dev mak
/var/tmp/* \
/var/lib/apt/lists/*

FROM debian:stretch
FROM debian:buster
LABEL maintainer="Matthew Vance"

ENV name=unbound \
unbound_version=1.9.1 \
version=1.1
version=1.2

ENV summary="${name} is a validating, recursive, and caching DNS resolver." \
description="${name} is a validating, recursive, and caching DNS resolver."
Expand All @@ -102,7 +102,7 @@ RUN set -x && \
debian_frontend=noninteractive apt-get update && apt-get install -y --no-install-recommends \
bsdmainutils \
ldnsutils \
libevent-2.0 \
libevent-2.1-6 \
libexpat1 && \
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
Expand Down

0 comments on commit af5641c

Please sign in to comment.