4 Commits
1.1.0 ... 1.1.1

Author SHA1 Message Date
0759a04611 add upgrade packages to Dockerfile
All checks were successful
trivy-scan-image / trivy_image_scan (push) Successful in 22s
2026-02-04 23:10:30 +01:00
c1956db12b schedule for trivy_scan_image.yml
Some checks failed
trivy-scan-image / trivy_image_scan (push) Failing after 22s
2026-01-18 19:17:43 +01:00
7210a56a16 .gitea/workflows/create_and_push_multiarch_container.yml aktualisiert 2026-01-18 17:53:14 +01:00
024f11613e rework display-names for workflows 2026-01-17 16:22:54 +01:00
3 changed files with 12 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
name: release-tag name: build-image
run-name: build and push Docker-Image
on: on:
workflow_dispatch: # Manuelles Auslösen des Workflows workflow_dispatch: # Manuelles Auslösen des Workflows
@@ -15,7 +16,7 @@ env:
jobs: jobs:
release-image: release-image:
runs-on: ubuntu-latest runs-on: build-ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout

View File

@@ -1,4 +1,5 @@
name: release-tag name: trivy-scan-image
run-name: Trivy - Scan Docker Image
on: on:
workflow_dispatch: # Manuelles Auslösen des Workflows workflow_dispatch: # Manuelles Auslösen des Workflows
@@ -7,9 +8,12 @@ on:
description: 'Tag für das zu scannende Docker-Image z.B. latest' description: 'Tag für das zu scannende Docker-Image z.B. latest'
required: true required: true
default: 'latest' default: 'latest'
schedule:
- cron: '15 1 * * 5'
env: env:
image_name: 404_games image_name: 404_games
image_tag: ${{ github.event.inputs.image_tag || 'latest' }}
registry: gitea.tebarius.duckdns.org registry: gitea.tebarius.duckdns.org
user: tebarius user: tebarius
@@ -27,4 +31,4 @@ jobs:
--scanners vuln,misconfig,secret \ --scanners vuln,misconfig,secret \
--severity HIGH,CRITICAL \ --severity HIGH,CRITICAL \
--ignore-unfixed \ --ignore-unfixed \
${{ env.registry }}/${{ env.user }}/${{ env.image_name }}:${{ github.event.inputs.image_tag }} ${{ env.registry }}/${{ env.user }}/${{ env.image_name }}:${{ env.image_tag }}

View File

@@ -2,6 +2,8 @@ FROM nginxinc/nginx-unprivileged:stable-alpine-slim
LABEL authors="tebarius" LABEL authors="tebarius"
LABEL description="nginx_with_404_and_502_games" LABEL description="nginx_with_404_and_502_games"
COPY ./games /usr/share/nginx/html USER root
RUN apk upgrade --no-cache
USER nginx USER nginx
COPY ./games /usr/share/nginx/html