From 6ce01a79ede655f287a07164f3952da6fad1dad3 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Wed, 19 Apr 2023 16:43:59 -0600 Subject: [PATCH] Update base containers (#355) * Update to Node18 * Update to latest stable lighthouse Former-commit-id: a335ccde3ae921c2f445086fc9ce78511faf4a24 --- app/data/container-build/cerc-laconic-console-host/Dockerfile | 2 +- app/data/container-build/cerc-lighthouse/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/data/container-build/cerc-laconic-console-host/Dockerfile b/app/data/container-build/cerc-laconic-console-host/Dockerfile index a31aa265..7e3fc46b 100644 --- a/app/data/container-build/cerc-laconic-console-host/Dockerfile +++ b/app/data/container-build/cerc-laconic-console-host/Dockerfile @@ -1,6 +1,6 @@ # Originally from: https://github.com/devcontainers/images/blob/main/src/javascript-node/.devcontainer/Dockerfile # [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster -ARG VARIANT=16-bullseye +ARG VARIANT=18-bullseye FROM node:${VARIANT} ARG USERNAME=node diff --git a/app/data/container-build/cerc-lighthouse/Dockerfile b/app/data/container-build/cerc-lighthouse/Dockerfile index 14f0a2ae..7d4fe5d8 100644 --- a/app/data/container-build/cerc-lighthouse/Dockerfile +++ b/app/data/container-build/cerc-lighthouse/Dockerfile @@ -1,4 +1,4 @@ -FROM sigp/lighthouse:v3.2.1-modern +FROM sigp/lighthouse:v4.0.1-modern RUN apt-get update; apt-get install bash netcat curl less jq -y;