3 Commits
Author SHA1 Message Date
Djeex bb13e398df Update python Docker tag to v3.14
CI / build-and-scan (pull_request) Successful in 24s
2026-08-22 10:38:37 +02:00
Djeex 6aaa5e5160 CI workflow OK for renovate
CI / build-and-scan (push) Successful in 18s
2026-08-22 10:30:37 +02:00
Djeex 36611ef30b Add CI workflow
CI / build-and-scan (push) Successful in 17s
2026-08-22 10:00:59 +02:00
2 changed files with 27 additions and 1 deletions
+26
View File
@@ -0,0 +1,26 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 6 * * 1"
jobs:
build-and-scan:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t adguard-cidre:ci .
- name: Scan with Trivy
run: |
docker run --rm \
-e DOCKER_HOST=tcp://dockerhost:2375 \
--add-host=dockerhost:host-gateway \
aquasec/trivy:0.74.0 image --exit-code 0 --severity HIGH,CRITICAL adguard-cidre:ci
+1 -1
View File
@@ -1,4 +1,4 @@
FROM python:3.13-alpine
FROM python:3.14-alpine
ENV TZ=Europe/Paris