From 49f84ca379124937361dec5086357eef31a7c69b Mon Sep 17 00:00:00 2001 From: CI-Bot Date: Wed, 14 Dec 2022 20:20:53 +0100 Subject: [PATCH] Update nginx Docker tag to v1.23.3 (#37) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | nginx | final | patch | `1.23.2-alpine` -> `1.23.3-alpine` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://gitea.ocram85.com/OCram85/Blog/pulls/37 Co-authored-by: CI-Bot Co-committed-by: CI-Bot --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8c7dc90..e700991 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /src RUN npm install \ && npm run build -FROM nginx:1.23.2-alpine as prod +FROM nginx:1.23.3-alpine as prod LABEL maintainer="marco.blessing@googlemail.com" HEALTHCHECK --interval=15s --timeout=5s \ CMD wget --no-verbose --tries=1 --spider http://localhost:80/ || exit 1