Dockerfile - include version.env to image

This commit is contained in:
Oscar Krause
2022-12-21 10:48:36 +01:00
parent e89401dbc1
commit 7eddb17862
2 changed files with 6 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ RUN apk update \
&& apk del build-deps
COPY app /app
COPY version.env /app/version.env
COPY README.md /README.md
HEALTHCHECK --start-period=30s --interval=10s --timeout=5s --retries=3 CMD curl --insecure --fail https://localhost/status || exit 1