From cd55b61cfc870af790dbdec4f86fdaab720c0931 Mon Sep 17 00:00:00 2001 From: "Jose I. Paris" Date: Fri, 5 Dec 2025 18:01:03 +0100 Subject: [PATCH] remove old Dockerfiles Signed-off-by: Jose I. Paris --- app/artifact-cas/Dockerfile | 18 ------------------ app/controlplane/Dockerfile | 18 ------------------ 2 files changed, 36 deletions(-) delete mode 100644 app/artifact-cas/Dockerfile delete mode 100644 app/controlplane/Dockerfile diff --git a/app/artifact-cas/Dockerfile b/app/artifact-cas/Dockerfile deleted file mode 100644 index e08b3315a..000000000 --- a/app/artifact-cas/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -FROM golang:1.25.5@sha256:20b91eda7a9627c127c0225b0d4e8ec927b476fa4130c6760928b849d769c149 AS builder - -# Not linked libraries since it will be injected into a scratch container -ENV CGO_ENABLED=0 - -COPY . /src -WORKDIR /src/app/artifact-cas - -RUN make build - -FROM scratch - -COPY --from=builder /src/app/artifact-cas/bin /app -COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ - - -WORKDIR /app -ENTRYPOINT [ "./artifact-cas", "--conf", "/data/conf"] diff --git a/app/controlplane/Dockerfile b/app/controlplane/Dockerfile deleted file mode 100644 index 210c802dc..000000000 --- a/app/controlplane/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -FROM golang:1.25.5@sha256:20b91eda7a9627c127c0225b0d4e8ec927b476fa4130c6760928b849d769c149 AS builder - -# Not linked libraries since it will be injected into a scratch container -ENV CGO_ENABLED=0 - -COPY . /src -WORKDIR /src/app/controlplane - -RUN make build - -FROM scratch - -COPY --from=builder /src/app/controlplane/bin /app -COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ - - -WORKDIR /app -ENTRYPOINT [ "./control-plane", "--conf", "/data/conf"]