Skip to content

Commit

Permalink
feat: Add DNSSEC support (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored Mar 25, 2024
1 parent b0f8d6a commit 87cd3c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Get remote package data
run: |
#!/bin/bash
package="edge/main/aarch64/dnsmasq"
package="edge/main/aarch64/dnsmasq-dnssec"
curl --show-error --fail --silent "https://pkgs.alpinelinux.org/package/$package" --output ./package_data.html
latest_tag=$(grep -A 3 -i \>version\< ./package_data.html | sed -E 's#.*>([0-9\.]+)-r[0-9]+</a>#\1#g' | tail -1 | sed 's/^[ \t]*//;s/[ \t]*$//')
[ -z "$latest_tag" ] && echo "Tag not found!" && exit 1
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM alpine:edge
RUN apk --no-cache add \
tini \
bash \
dnsmasq && \
dnsmasq-dnssec && \
rm -rf /tmp/* /var/cache/apk/*

RUN mkdir -p /etc/default/
Expand Down

0 comments on commit 87cd3c9

Please sign in to comment.