add production readiness and recovery assets

This commit is contained in:
Marco0300
2026-09-03 12:38:27 +02:00
parent 537a2a6f0a
commit 6b41d5b9ee
25 changed files with 540 additions and 18 deletions
+4
View File
@@ -3,8 +3,12 @@ RUN addgroup -S app && adduser -S -G app app
WORKDIR /srv
COPY index.html /srv/index.html
COPY styles.css /srv/styles.css
COPY config.js /srv/config.js
COPY asset-manifest.json /srv/asset-manifest.json
COPY app.js /srv/app.js
COPY healthz /srv/healthz
COPY health.html /srv/health.html
COPY error.html /srv/error.html
RUN chown -R app:app /srv
USER app
EXPOSE 8080