Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions node18-awscli-jq/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,14 @@ RUN apt-get update && \
apt-get install --assume-yes --no-install-recommends jq && \
rm -rf /var/lib/apt/lists/*

# dnsutils
RUN apt-get update && \
apt-get install --assume-yes --no-install-recommends dnsutils && \
rm -rf /var/lib/apt/lists/*

# gettext
RUN apt-get update && \
apt-get install --assume-yes --no-install-recommends gettext-base && \
rm -rf /var/lib/apt/lists/*

ENTRYPOINT []
10 changes: 10 additions & 0 deletions node18-awscli-jq/unit-test-amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ commandTests:
args: ["jq"]
expectedOutput: ["/usr/bin/jq"]

- name: "dnsutils installation"
command: "which"
args: ["dig"]
expectedOutput: ["/usr/bin/dig"]

- name: "envsubst installation"
command: "which"
args: ["envsubst"]
expectedOutput: ["/usr/bin/envsubst"]

# check that image builds for the right architecture
- name: "architecture check"
command: "uname"
Expand Down
10 changes: 10 additions & 0 deletions node18-awscli-jq/unit-test-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ commandTests:
args: ["jq"]
expectedOutput: ["/usr/bin/jq"]

- name: "dnsutils installation"
command: "which"
args: ["dig"]
expectedOutput: ["/usr/bin/dig"]

- name: "envsubst installation"
command: "which"
args: ["envsubst"]
expectedOutput: ["/usr/bin/envsubst"]

# check that image builds for the right architecture
- name: "architecture check"
command: "uname"
Expand Down
5 changes: 5 additions & 0 deletions release_notes/node18-awscli-jq_0.0.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node18-awscli-jq/0.0.3 (2024-08-21)

✨ Features

- Add utils dns