add footer and build info

This commit is contained in:
Lee
2024-09-13 20:52:27 +01:00
parent 37e2b305ff
commit e9b17327a8
8 changed files with 104 additions and 5 deletions

View File

@ -24,6 +24,10 @@ WORKDIR /app
ENV NODE_ENV production
ENV NEXT_TELEMETRY_DISABLED 1
# Add the commit hash
ARG GIT_REV
ENV GIT_REV ${GIT_REV}
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs