Compare commits

..

No commits in common. "main" and "main" have entirely different histories.
main ... main

2 changed files with 5 additions and 21 deletions

View File

@ -46,7 +46,7 @@ steps:
#- git remote set-url origin https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2
# Repo clonen
- git clone https://git.efi.th-nuernberg.de/gitea/schreinerma97192/EinfuehrungInDocker_Pipeline2.git
- git clone https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2.git
- cd EinfuehrungInDocker_Pipeline
# Branch wechseln oder erstellen

View File

@ -1,6 +1,5 @@
# BUILD STAGE
# Base-Image
FROM debian:stable-slim AS build
FROM ubuntu:latest
# Pakete installieren
RUN apt-get update
@ -10,28 +9,13 @@ RUN apt-get install -y build-essential gcc curl vim net-tools
WORKDIR /app
# alles kopieren
COPY deployment.c .
COPY . .
# Code kompilieren
RUN gcc -o deployment deployment.c
# RUNTIME STAGE
FROM debian:stable-slim
RUN useradd -m appuser
USER appuser
WORKDIR /app
COPY --from=build /app/deployment .
VOLUME ["/output"]
HEALTHCHECK CMD test -f /output/output.txt || exit 1
# Verzeichnis für Ausgabe anlegen
# RUN mkdir /output
RUN mkdir /output
# Ausgabe wird ins Container-Dateisystem geschrieben
ENTRYPOINT ["/bin/bash", "-c"]