build process (via Dockerfile) now timestamps build and that is exposed on about page

This commit is contained in:
2023-01-03 11:46:53 +11:00
parent be3e2ae19e
commit 0684f4725a
4 changed files with 16 additions and 5 deletions

View File

@@ -20,7 +20,8 @@ RUN pip3 install --upgrade pillow --user
EXPOSE 443
EXPOSE 55432
COPY . .
RUN git log -n 15 > ./internal/git-log.txt
RUN date > internal/build-date.txt
RUN git log -n 15 > internal/git-log.txt
RUN ln -s /code/TODO /code/internal/TODO
RUN ln -s /code/BUGs /code/internal/BUGs
RUN rm -rf .git