Compare commits
5 Commits
a55dd0d78e
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
e5ab621beb
|
|||
|
f180bca6da
|
|||
|
53d4dea401
|
|||
|
5189c998f7
|
|||
|
19efc7c213
|
@@ -1,5 +1,3 @@
|
||||
LICENSE
|
||||
README.md
|
||||
manifest.tmpl
|
||||
.gitea/
|
||||
.drone*
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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,4 +1,4 @@
|
||||
FROM golang:1.22.1-alpine AS build
|
||||
FROM golang:1.25.1-alpine AS build
|
||||
|
||||
WORKDIR /src
|
||||
COPY src /src
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
# Dockerized Unbound for caching purposes
|
||||
|
||||
[](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
|
||||
```
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user