diff --git a/.github/workflows/ghcr-main-dev.yml b/.github/workflows/ghcr-main-dev.yml index d0946b9..c178568 100644 --- a/.github/workflows/ghcr-main-dev.yml +++ b/.github/workflows/ghcr-main-dev.yml @@ -43,4 +43,4 @@ jobs: push: true tags: ${{ env.REGISTRY }}/${{ github.actor }}/dnsmonster:dev labels: ${{ env.REGISTRY }}/${{ github.actor }}/dnsmonster:dev - platforms: linux/amd64,linux/arm/v6,linux/arm64 + platforms: linux/amd64,linux/arm64 diff --git a/.github/workflows/ghcr.yml b/.github/workflows/ghcr.yml index ab45311..c979ccc 100644 --- a/.github/workflows/ghcr.yml +++ b/.github/workflows/ghcr.yml @@ -44,4 +44,4 @@ jobs: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - platforms: linux/amd64,linux/arm/v6,linux/arm64 + platforms: linux/amd64,linux/arm64 diff --git a/Dockerfile b/Dockerfile index d5c592e..7d62cd2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ARG TARGETARCH ENV REPO="github.com/mosajjal/dnsmonster" -RUN apk add --no-cache libcap-static libpcap-dev linux-headers git go file --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ +RUN apk add --no-cache libcap-static libpcap-dev linux-headers gcc git go file --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ RUN git clone https://${REPO}.git /opt/dnsmonster --depth 1 \ && cd /opt/dnsmonster \