From ac198e573121fc6dd04533982c5ee8f3fa4ebbec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Thu, 31 Oct 2019 15:17:43 +0100 Subject: [PATCH] Avoid 'Update frontend' commits with Dockerfile build-args --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fff1ca7..d1d6e73 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ -FROM avatao/frontend-tutorial-framework:chausie-20191021 as frontend +ARG FRONTEND_VERSION +FROM avatao/frontend-tutorial-framework:${FRONTEND_VERSION} as frontend + FROM avatao/debian:buster +ARG FRONTEND_VERSION +LABEL tfw.frontend.version=${FRONTEND_VERSION} RUN apt-get update &&\ apt-get install -y --no-install-recommends \