diff --git a/.gitignore b/.gitignore index fb2175f8..d9dd2c52 100644 --- a/.gitignore +++ b/.gitignore @@ -21,7 +21,7 @@ build-storybook.log /.env* /Attic/ /.envrc -/public/static/themes/ +/public/static/themes /.rgignore /test-results/ /playwright-report/ diff --git a/Dockerfile b/Dockerfile index ff458787..b0883b24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -99,6 +99,7 @@ COPY --from=builder --chown=nextjs:nodejs /app/public ./public COPY ./docker/start-server.sh /entrypoint.sh COPY ./docker/Caddyfile /etc/caddy/ +COPY ./docker/dokku-app.json ./app.json ARG BUILD_ID ARG SENTRY_RELEASE diff --git a/docker/dokku-app.json b/docker/dokku-app.json new file mode 100644 index 00000000..5ef122f2 --- /dev/null +++ b/docker/dokku-app.json @@ -0,0 +1,11 @@ +{ + "web": [ + { + "type": "startup", + "name": "web check", + "description": "Checking if the app responds to the /_health endpoint", + "path": "/_health", + "attempts": 3 + } + ] +} diff --git a/e2e-tests/.gitignore b/e2e-tests/.gitignore index edfde7b7..b8ae02d8 100644 --- a/e2e-tests/.gitignore +++ b/e2e-tests/.gitignore @@ -1,2 +1,3 @@ /playwright-report/ /test-results/ +test-results.json