Compare commits

..

3 Commits
main ... main

Author SHA1 Message Date
b449823463 Changed Ubuntu -> Alpine 2026-04-11 13:56:24 +02:00
1a80a61017 Test2 2026-04-11 13:48:17 +02:00
a0340bdee0 C-Programm angepasst für einen Test 2026-04-11 13:42:26 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ steps:
fi fi
- name: security-scan - name: security-scan
image: ghcr.io/aquasecurity/trivy:0.69.3 image: aquasec/trivy:latest
commands: commands:
- trivy image --input image.tar --severity HIGH,CRITICAL --exit-code 1 - trivy image --input image.tar --severity HIGH,CRITICAL --exit-code 1

View File

@ -1,5 +1,5 @@
# Base-Image # Base-Image
FROM ubuntu:latest FROM alpine:latest
# Pakete installieren # Pakete installieren
RUN apt-get update RUN apt-get update
@ -19,4 +19,4 @@ RUN mkdir /output
# Ausgabe wird ins Container-Dateisystem geschrieben # Ausgabe wird ins Container-Dateisystem geschrieben
ENTRYPOINT ["/bin/bash", "-c"] ENTRYPOINT ["/bin/bash", "-c"]
CMD ["./deployment 10 > /output/output.txt && tail -f /output/output.txt"] CMD ["./deployment 10 > /output/output.txt && tail -f /output/output.txt"]