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"]