From 8eecd3c72a10a46da750d80f36a465694ff54361 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Sat, 3 Jun 2023 15:33:31 -0400 Subject: [PATCH] Dockerfile*: use my images Signed-off-by: Vincent Batts --- Dockerfile | 2 +- Dockerfile-build | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7c2052e..feb813f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine +FROM r.batts.cloud/debian:testing LABEL org.opencontainers.image.authors="philipp.heckel@gmail.com" LABEL org.opencontainers.image.url="https://ntfy.sh/" diff --git a/Dockerfile-build b/Dockerfile-build index dec2d96..9c6d1bc 100644 --- a/Dockerfile-build +++ b/Dockerfile-build @@ -1,4 +1,4 @@ -FROM golang:1.19-bullseye as builder +FROM r.batts.cloud/golang:1.19 as builder ARG VERSION=dev ARG COMMIT=unknown @@ -37,7 +37,7 @@ ADD ./user ./user ADD ./util ./util RUN make VERSION=$VERSION COMMIT=$COMMIT cli-linux-server -FROM alpine +FROM r.batts.cloud/debian:testing LABEL org.opencontainers.image.authors="philipp.heckel@gmail.com" LABEL org.opencontainers.image.url="https://ntfy.sh/"