From 5dc32da522322745ad6e2cb1f951ecec1194c723 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Thu, 7 Sep 2023 02:17:37 +0200 Subject: [PATCH] ci(earthly): Add automatic expiry to all images --- images/dovecot/Earthfile | 2 ++ images/findmydevice-server/Earthfile | 29 ++++++++++++++-------------- images/koolbox/Earthfile | 2 ++ images/postfix/Earthfile | 2 ++ images/query-exposer/Earthfile | 18 +++++++++++++---- images/synadm/Earthfile | 2 ++ 6 files changed, 37 insertions(+), 18 deletions(-) diff --git a/images/dovecot/Earthfile b/images/dovecot/Earthfile index 343862a34..de17c2866 100644 --- a/images/dovecot/Earthfile +++ b/images/dovecot/Earthfile @@ -54,5 +54,7 @@ container: ENTRYPOINT ["/usr/sbin/dovecot", "-F"] IF [ $latest = "true" ] SAVE IMAGE --push ${registry}:latest + ELSE + LABEL "quay.expires-after"="12w" END SAVE IMAGE --push ${registry}:${tag} diff --git a/images/findmydevice-server/Earthfile b/images/findmydevice-server/Earthfile index 9b69ffb94..fca038db7 100644 --- a/images/findmydevice-server/Earthfile +++ b/images/findmydevice-server/Earthfile @@ -1,14 +1,12 @@ VERSION 0.7 -builder: - FROM docker.io/library/golang:1.21.0-bookworm - +build: + FROM ../mirror+golang + ARG FMD_SERVER_VERSION WORKDIR /go/src/findmydeviceserver ENV GOPATH /go - RUN apt update && apt install -y npm - - GIT CLONE --keep-ts --branch=v0.4.0 https://gitlab.com/Nulide/findmydeviceserver.git ./ + GIT CLONE --keep-ts --branch=$FMD_SERVER_VERSION https://git.shivering-isles.com/other-mirrors/findmydevice/findmydeviceserver.git ./ RUN sed -i 's/1020/8080/' cmd/fmdserver.go RUN sed -i 's/1008/8443/' cmd/fmdserver.go @@ -16,7 +14,6 @@ builder: RUN bash ./objectbox-install.sh RUN go build -o /fmd cmd/fmdserver.go - RUN npm install SAVE ARTIFACT /usr/lib/libobjectbox.so ./libobjectbox.so SAVE ARTIFACT /go/src/findmydeviceserver/node_modules ./node_modules @@ -29,18 +26,20 @@ container: FROM docker.io/library/debian:bookworm-slim ARG registry=quay.io/shivering-isles/findmydevice-server - COPY .release ./ - ARG tag=$(awk -F'=' '$1 == "release" {print $2}' .release) + # renovate: datasource=git-tags depName=https://git.shivering-isles.com/other-mirrors/findmydevice/findmydeviceserver.git + ARG FMD_SERVER_VERSION=v0.4.0 + ENV FMD_SERVER_VERSION=${FMD_SERVER_VERSION} + ARG tag=${FMD_SERVER_VERSION} ARG latest=false RUN apt update && apt install -y ca-certificates && rm -rf /var/lib/apt/lists/* - COPY +builder/server /fmd/server - COPY +builder/node_modules /fmd/web/node_modules - COPY +builder/libobjectbox.so /usr/lib/libobjectbox.so + COPY (+build/server --FMD_SERVER_VERSION=${FMD_SERVER_VERSION}) /fmd/server + COPY (+build/node_modules --FMD_SERVER_VERSION=${FMD_SERVER_VERSION}) /fmd/web/node_modules + COPY (+build/libobjectbox.so --FMD_SERVER_VERSION=${FMD_SERVER_VERSION}) /usr/lib/libobjectbox.so - COPY +builder/web /fmd/web - COPY +builder/extra /fmd/extra + COPY (+build/web --FMD_SERVER_VERSION=${FMD_SERVER_VERSION}) /fmd/web + COPY (+build/extra --FMD_SERVER_VERSION=${FMD_SERVER_VERSION}) /fmd/extra RUN useradd -m -u 1000 user RUN mkdir /fmd/objectbox \ @@ -53,5 +52,7 @@ container: IF [ $latest = "true" ] SAVE IMAGE --push ${registry}:latest + ELSE + LABEL "quay.expires-after"="12w" END SAVE IMAGE --push ${registry}:${tag} diff --git a/images/koolbox/Earthfile b/images/koolbox/Earthfile index 546cd0129..c254a8343 100644 --- a/images/koolbox/Earthfile +++ b/images/koolbox/Earthfile @@ -9,5 +9,7 @@ container: FROM DOCKERFILE --platform=linux/amd64 -f "./Dockerfile" "./" IF [ $latest = "true" ] SAVE IMAGE --push ${registry}:latest + ELSE + LABEL "quay.expires-after"="12w" END SAVE IMAGE --push ${registry}:${tag} \ No newline at end of file diff --git a/images/postfix/Earthfile b/images/postfix/Earthfile index 12bb2f2d2..6462b303d 100644 --- a/images/postfix/Earthfile +++ b/images/postfix/Earthfile @@ -40,5 +40,7 @@ container: ENTRYPOINT [ "sh" , "/usr/local/libexec/start.sh" ] IF [ $latest = "true" ] SAVE IMAGE --push ${registry}:latest + ELSE + LABEL "quay.expires-after"="12w" END SAVE IMAGE --push ${registry}:${tag} \ No newline at end of file diff --git a/images/query-exposer/Earthfile b/images/query-exposer/Earthfile index d3e5106f2..0b908bd92 100644 --- a/images/query-exposer/Earthfile +++ b/images/query-exposer/Earthfile @@ -19,14 +19,24 @@ build: RUN go build -mod=vendor -o output/query-exposer SAVE ARTIFACT output/query-exposer AS LOCAL local-output/go-query-exposer +container-internal: + FROM ../mirror+distroless-static + COPY +build/query-exposer / + ENTRYPOINT ["/query-exposer"] + container: + FROM ../mirror+golang + ARG registry=quay.io/shivering-isles/query-exposer COPY .release ./ ARG tag=$(awk -F'=' '$1 == "release" {print $2}' .release) - FROM ../mirror+distroless-static - ARG registry=quay.io/shivering-isles/query-exposer ARG latest=false - COPY +build/query-exposer / - ENTRYPOINT ["/query-exposer"] + IF [ $latest = "true" ] + FROM +container-internal + SAVE IMAGE --push ${registry}:latest + ELSE + FROM +container-internal + LABEL "quay.expires-after"="12w" + END SAVE IMAGE --push ${registry}:${tag} scan: diff --git a/images/synadm/Earthfile b/images/synadm/Earthfile index fc4be6bde..381b0bb05 100644 --- a/images/synadm/Earthfile +++ b/images/synadm/Earthfile @@ -9,5 +9,7 @@ container: FROM DOCKERFILE --platform=linux/amd64 -f "./Dockerfile" "./" IF [ $latest = "true" ] SAVE IMAGE --push ${registry}:latest + ELSE + LABEL "quay.expires-after"="12w" END SAVE IMAGE --push ${registry}:${tag} \ No newline at end of file -- GitLab