Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ad51e3025 | |||
| e33ce5bc17 | |||
| 3eba9b606c | |||
| 3855a269bf | |||
| 8c7f2f174d | |||
| 0d85c95672 | |||
| 62f69ced51 | |||
| 4a1925cedd | |||
| 7aee81e616 | |||
| 2d4bc2ffd5 | |||
| 80d39c497d | |||
| 7ce2ff3584 | |||
| ab6a57956f | |||
| 0836d0ef0f | |||
| b80bc08728 |
@ -26,7 +26,7 @@ steps:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
- name: security-scan
|
- name: security-scan
|
||||||
image: aquasec/trivy:latest
|
image: aquasec/trivy:0.58.2
|
||||||
commands:
|
commands:
|
||||||
- trivy image --input image.tar --severity HIGH,CRITICAL --exit-code 1
|
- trivy image --input image.tar --severity HIGH,CRITICAL --exit-code 1
|
||||||
|
|
||||||
@ -46,8 +46,8 @@ steps:
|
|||||||
#- git remote set-url origin https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2
|
#- git remote set-url origin https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2
|
||||||
|
|
||||||
# Repo clonen
|
# Repo clonen
|
||||||
- git clone https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2.git
|
- git clone https://git.efi.th-nuernberg.de/gitea/kuerzdoerferta96614/EinfuehrungInDocker_Pipeline2.git
|
||||||
- cd EinfuehrungInDocker_Pipeline
|
- cd EinfuehrungInDocker_Pipeline2
|
||||||
|
|
||||||
# Branch wechseln oder erstellen
|
# Branch wechseln oder erstellen
|
||||||
- git checkout drone-artifacts || git checkout -b drone-artifacts
|
- git checkout drone-artifacts || git checkout -b drone-artifacts
|
||||||
|
|||||||
33
Dockerfile
33
Dockerfile
@ -1,22 +1,21 @@
|
|||||||
# Base-Image
|
FROM alpine:3.13 AS builder
|
||||||
FROM ubuntu:latest
|
RUN apk add --no-cache gcc musl-dev
|
||||||
|
|
||||||
# Pakete installieren
|
|
||||||
RUN apt-get update
|
|
||||||
RUN apt-get install -y build-essential gcc curl vim net-tools
|
|
||||||
|
|
||||||
# Arbeitsverzeichnis setzen
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
COPY deployment.c .
|
||||||
|
RUN gcc -static -O2 -s -o deployment deployment.c && strip deployment
|
||||||
|
|
||||||
# alles kopieren
|
FROM alpine:3.13
|
||||||
COPY . .
|
RUN apk add --no-cache bash coreutils && rm -rf /var/cache/apk/*
|
||||||
|
RUN addgroup -g 1000 appuser && adduser -u 1000 -G appuser -s /bin/bash -D appuser
|
||||||
|
RUN mkdir -p /app /output && chown -R appuser:appuser /app /output
|
||||||
|
|
||||||
# Code kompilieren
|
COPY --from=builder --chown=appuser:appuser /app/deployment /app/
|
||||||
RUN gcc -o deployment deployment.c
|
|
||||||
|
|
||||||
# Verzeichnis für Ausgabe anlegen
|
WORKDIR /app
|
||||||
RUN mkdir /output
|
VOLUME ["/output"]
|
||||||
|
USER appuser
|
||||||
|
|
||||||
# Ausgabe wird ins Container-Dateisystem geschrieben
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
||||||
ENTRYPOINT ["/bin/bash", "-c"]
|
CMD test -f /output/output.txt || exit 1
|
||||||
CMD ["./deployment 10 > /output/output.txt && tail -f /output/output.txt"]
|
|
||||||
|
CMD ["/bin/bash", "-c", "./deployment 10 > /output/output.txt && tail -f /output/output.txt"]
|
||||||
Loading…
x
Reference in New Issue
Block a user