feat: add build date to Dockerfile

This commit is contained in:
relikd
2023-06-06 17:31:53 +02:00
parent f6451dde67
commit 11086955be

View File

@@ -18,5 +18,6 @@ COPY --chmod=700 ./scripts /scripts
# finally copy app (likely will invalidate cache) # finally copy app (likely will invalidate cache)
COPY . . COPY . .
RUN (date +'%Y-%m-%d %R') > build_date.txt
CMD ["on-deploy.sh"] CMD ["on-deploy.sh"]