Merge pull request #9 from tcely/patch-2
Upgrade packages before adding bind - while not per "docker best practices", it absolutely makes sense here since so few packages are used, and generally you want the libraries/dependencies for bind to be as updated as possible.
This commit is contained in:
commit
dbce9eb957
|
@ -1,7 +1,7 @@
|
|||
FROM alpine:latest
|
||||
EXPOSE 53 53/udp
|
||||
|
||||
RUN apk --update add bind
|
||||
RUN apk --update upgrade && apk add bind
|
||||
|
||||
RUN mkdir -m 0755 -p /var/run/named && chown -R root:named /var/run/named
|
||||
|
||||
|
|
Loading…
Reference in New Issue