Compare commits

..

No commits in common. "03cb45afef9db31d5ef1f247cd00cbe575744ac0" and "b72c6865a0cb2ffe9824ff94fb89256089028896" have entirely different histories.

1 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
FROM alpine:3.15.5
ARG UNBOUND_VERSION=1.18.0
ARG UNBOUND_VERSION=1.17.0
# Install dependencies and build unbound, clean up after
RUN apk --update add --no-cache alpine-sdk bison dns-root-hints expat-dev flex git openssl-dev && \
@ -20,10 +20,11 @@ RUN apk --update add --no-cache alpine-sdk bison dns-root-hints expat-dev flex g
COPY entrypoint.sh /srv/
COPY healthcheck.sh /srv/
# Prepare unbound
RUN addgroup -S unbound && adduser -S -G unbound unbound
## Prepare unbound
RUN addgroup -S unbound
RUN adduser -S -G unbound unbound
RUN mkdir -p /srv/unbound/conf
COPY unbound.conf /srv/unbound/unbound.conf
HEALTHCHECK --interval=10s --timeout=1s --retries=1 CMD sh /srv/healthcheck.sh
HEALTHCHECK --interval=30s --timeout=2s --retries=1 CMD sh /srv/healthcheck.sh
ENTRYPOINT ["sh", "/srv/entrypoint.sh"]