From 11086955be20f87239d97ae54906b0f083c57699 Mon Sep 17 00:00:00 2001 From: relikd Date: Tue, 6 Jun 2023 17:31:53 +0200 Subject: [PATCH] feat: add build date to Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 47a62da..1ff9966 100755 --- a/Dockerfile +++ b/Dockerfile @@ -18,5 +18,6 @@ COPY --chmod=700 ./scripts /scripts # finally copy app (likely will invalidate cache) COPY . . +RUN (date +'%Y-%m-%d %R') > build_date.txt CMD ["on-deploy.sh"]