Compare commits

...

5 Commits

Author SHA1 Message Date
e5ab621beb better vulnscan message
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (amd64) (push) Successful in 1m3s
Container Publish / build-image (arm64) (push) Successful in 56s
Container Publish / update docker manifest (push) Successful in 10s
Vulnerability Scan / Daily Vulnerability Scan (arm64) (push) Successful in 5s
Vulnerability Scan / Daily Vulnerability Scan (amd64) (push) Successful in 20s
2025-10-08 17:26:39 +02:00
f180bca6da removed docker cache when building 2025-10-08 17:26:25 +02:00
53d4dea401 removed drone traces
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (amd64) (push) Successful in 13s
Container Publish / build-image (arm64) (push) Successful in 14s
Container Publish / update docker manifest (push) Successful in 9s
2025-10-08 17:25:37 +02:00
5189c998f7 build without tag
Some checks failed
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (amd64) (push) Successful in 26s
Container Publish / build-image (arm64) (push) Successful in 11s
Container Publish / update docker manifest (push) Successful in 10s
Vulnerability Scan / Daily Vulnerability Scan (amd64) (push) Failing after 9s
Vulnerability Scan / Daily Vulnerability Scan (arm64) (push) Successful in 6s
2025-09-29 20:15:51 +02:00
19efc7c213 go upgrade
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (arm64) (push) Successful in 1m7s
Container Publish / build-image (amd64) (push) Successful in 1m22s
Container Publish / update docker manifest (push) Successful in 10s
2025-09-29 20:14:01 +02:00
6 changed files with 4 additions and 16 deletions

View File

@@ -1,5 +1,3 @@
LICENSE
README.md
manifest.tmpl
.gitea/
.drone*

View File

@@ -8,8 +8,6 @@ env:
on:
push:
tags:
- '*'
schedule:
- cron: "0 12 * * 3"
workflow_dispatch:
@@ -50,7 +48,7 @@ jobs:
docker build \
--tag ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }} \
--build-arg "ALPINE_VERSION=${{ env.ALPINE_VERSION }}" \
--platform linux/${{ matrix.arch }} -f Dockerfile .
--platform linux/${{ matrix.arch }} --no-cache -f Dockerfile .
docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest-${{ matrix.arch }}
manifest:

View File

@@ -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`

View File

@@ -1,4 +1,4 @@
FROM golang:1.22.1-alpine AS build
FROM golang:1.25.1-alpine AS build
WORKDIR /src
COPY src /src

View File

@@ -1,7 +1,5 @@
# Dockerized Unbound for caching purposes
[![Build Status](https://drone.asperti.com/api/badges/paspo/docker-dnscache/status.svg)](https://drone.asperti.com/paspo/docker-dnscache)
## Usage with docker compose
```yaml
@@ -33,9 +31,3 @@ docker run --rm --name zabbix-dns \
-p "1053:1053" -p "1053:1053/udp" \
-ti docker.asperti.com/paspo/dnscache:latest
```
## test drone config
```sh
drone starlark --format --stdout
```

View File

@@ -1,6 +1,6 @@
module asperti.com/dnsproxy
go 1.24.0
go 1.25.1
require github.com/gin-gonic/gin v1.10.0