Compare commits
5 Commits
a5446b782d
...
dee7298fbc
| Author | SHA1 | Date | |
|---|---|---|---|
|
dee7298fbc
|
|||
|
debef1b7f0
|
|||
|
906240fb9d
|
|||
|
285ec54017
|
|||
|
5d793524c3
|
@@ -7,10 +7,8 @@ env:
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
schedule:
|
||||
- cron: "0 12 3 * *"
|
||||
- cron: "0 12 * * 3"
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
workflow_run:
|
||||
@@ -48,7 +46,7 @@ jobs:
|
||||
run: |
|
||||
docker build \
|
||||
--tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} \
|
||||
--platform linux/${{ matrix.arch }} -f Dockerfile .
|
||||
--platform linux/${{ matrix.arch }} --no-cache -f Dockerfile .
|
||||
docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }}
|
||||
|
||||
manifest:
|
||||
|
||||
@@ -61,4 +61,4 @@ jobs:
|
||||
token: ${{ secrets.TELEGRAM_TOKEN }}
|
||||
format: markdown
|
||||
message: |
|
||||
Found **${{ steps.vulncount.outputs.VULNCOUNT }}** vulnerabilities in `${{ github.repository }}`
|
||||
Found **${{ steps.vulncount.outputs.VULNCOUNT }}** vulnerabilities in `${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest`
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
FROM alpine:latest
|
||||
|
||||
RUN \
|
||||
apk --update upgrade && \
|
||||
apk add tini curl pdns pdns-backend-sqlite3
|
||||
apk --no-cache upgrade && \
|
||||
apk --no-cache add tini curl pdns pdns-backend-sqlite3
|
||||
|
||||
COPY rootfs /
|
||||
|
||||
|
||||
Reference in New Issue
Block a user