From da1b7ae5057d96a667ea91ee30aec76afe420100 Mon Sep 17 00:00:00 2001 From: PSanetra Date: Mon, 6 May 2024 13:28:24 +0200 Subject: [PATCH] fix: Use gomplate from maintained base image Fixes usage of outdated gomplate build Fixes #13 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2ea06a8..6ac3c2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG NGINX_TAG -FROM hairyhenderson/gomplate:v3 as gomplate +FROM ghcr.io/hairyhenderson/gomplate:stable as gomplate FROM nginxinc/nginx-unprivileged:${NGINX_TAG} as single-page-app-server COPY --from=gomplate /gomplate /usr/local/bin/gomplate