unbound-redis-apk/Dockerfile
2023-10-20 13:06:49 +02:00

28 lines
542 B
Docker

FROM alpine:latest
LABEL version="1.0.0" \
author="Daniel Sommer <daniel.sommer@velvettear.de>" \
license="MIT"
MAINTAINER Daniel Sommer <daniel.sommer@nux.de>
ENV VERSION=
COPY [ "unbound", "/tmp/unbound" ]
RUN apk upgrade --no-cache --progress \
&& apk add --no-cache --progress \
alpine-sdk \
dnssec-root \
expat-dev \
libevent-dev \
linux-headers \
openssl-dev \
protobuf-c-dev \
python3-dev \
swig \
hiredis-dev \
bind-tools \
ldns-tools
ENTRYPOINT ["/tmp/unbound/build.sh"]