From 2392d28e5c105ee73db9fcc941b8d3ce5bbee157 Mon Sep 17 00:00:00 2001 From: Anthony Romaniello Date: Mon, 24 Apr 2023 17:32:31 -0600 Subject: [PATCH 1/5] Update autoheal base image to alpine 3.17 --- docker/Dockerfile-autoheal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile-autoheal b/docker/Dockerfile-autoheal index 3ef47bda..037aaa72 100644 --- a/docker/Dockerfile-autoheal +++ b/docker/Dockerfile-autoheal @@ -1,3 +1,3 @@ -FROM alpine:3.9 +FROM alpine:3.17 RUN apk add --no-cache jq curl From 335beaa061388083debbc79621a9dab4dfdac847 Mon Sep 17 00:00:00 2001 From: Anthony Romaniello Date: Mon, 24 Apr 2023 17:32:58 -0600 Subject: [PATCH 2/5] Update NGINX base image to 1.24 --- docker/Dockerfile-nginx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile-nginx b/docker/Dockerfile-nginx index d287f430..6b7910d9 100644 --- a/docker/Dockerfile-nginx +++ b/docker/Dockerfile-nginx @@ -1,4 +1,4 @@ -FROM nginx:1.17-alpine +FROM nginx:1.24-alpine RUN mkdir -p /var/www/scos-sensor/static COPY --chown=nginx:nginx ./src/static/ /var/www/scos-sensor/static/ From a14639620088424c77d843ebde4bc775e8ed077b Mon Sep 17 00:00:00 2001 From: Anthony Romaniello Date: Mon, 24 Apr 2023 17:34:16 -0600 Subject: [PATCH 3/5] Update API base image to tekrsa_usb:0.2.3 --- env.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env.template b/env.template index ddf4bee0..86c87a3b 100644 --- a/env.template +++ b/env.template @@ -59,7 +59,7 @@ CALLBACK_SSL_VERIFICATION=true MANAGER_FQDN="$(hostname -f)" MANAGER_IP="$(hostname -I | cut -d' ' -f1)" -BASE_IMAGE=ghcr.io/ntia/scos-tekrsa/tekrsa_usb:0.2.1 +BASE_IMAGE=ghcr.io/ntia/scos-tekrsa/tekrsa_usb:0.2.3 # Default callback api/results # Set to OAUTH if using OAuth Password Flow Authentication, callback url needs to be api/v2/results CALLBACK_AUTHENTICATION=TOKEN From 97e41a2d8c5d700ffceb63ba8626b46bb1a35dbb Mon Sep 17 00:00:00 2001 From: Anthony Romaniello Date: Wed, 3 May 2023 14:24:40 -0600 Subject: [PATCH 4/5] Update postgres base image to PostegreSQL 15 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 112762da..b86cdf22 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ services: db: - image: postgres:12-alpine + image: postgres:15-alpine restart: always environment: - POSTGRES_PASSWORD From 4a173b3086967a108bede06e3d5a08e240ddc755 Mon Sep 17 00:00:00 2001 From: Anthony Romaniello Date: Fri, 30 Jun 2023 11:07:42 -0400 Subject: [PATCH 5/5] alpine 3.17 -> 3.18 --- docker/Dockerfile-autoheal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile-autoheal b/docker/Dockerfile-autoheal index 037aaa72..54a00433 100644 --- a/docker/Dockerfile-autoheal +++ b/docker/Dockerfile-autoheal @@ -1,3 +1,3 @@ -FROM alpine:3.17 +FROM alpine:3.18 RUN apk add --no-cache jq curl