-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #272 from prameshj/nodecache-followup
Follow up changes to node-cache PR
- Loading branch information
Showing
3 changed files
with
32 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,11 +13,10 @@ | |
# limitations under the License. | ||
|
||
FROM debian:stable-slim | ||
|
||
MAINTAINER Pavithra Ramesh <[email protected]> | ||
|
||
RUN apt-get update | ||
RUN apt-get -y install iproute2 iptables | ||
RUN apt-get update && apt-get install -y \ | ||
iproute2 \ | ||
iptables \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
ADD bin/ARG_ARCH/ARG_BIN /ARG_BIN | ||
EXPOSE 53 53/udp | ||
EXPOSE 53 53/tcp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
cache 30 | ||
reload | ||
loop | ||
log | ||
bind 1.2.3.4 | ||
forward . 8.8.8.8 { | ||
force_tcp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters