From 379c073d151a926bd37f7a2ff11208f425284ed4 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Mon, 20 Sep 2021 21:46:06 -0300 Subject: [PATCH] [server] Update node to 12.22.6 and add additional binaries --- components/server/leeway.Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/components/server/leeway.Dockerfile b/components/server/leeway.Dockerfile index 4f8931b6318aab..6fbb8cb3d61739 100644 --- a/components/server/leeway.Dockerfile +++ b/components/server/leeway.Dockerfile @@ -2,7 +2,7 @@ # Licensed under the GNU Affero General Public License (AGPL). # See License-AGPL.txt in the project root for license information. -FROM node:12.22.1-slim as builder +FROM node:12.22.6-slim as builder RUN apt-get update && apt-get install -y build-essential python @@ -12,11 +12,15 @@ WORKDIR /app RUN /installer/install.sh -FROM node:12.22.1-slim +FROM node:12.22.6-slim # Using ssh-keygen for RSA keypair generation RUN apt-get update && apt-get install -yq \ openssh-client \ + procps \ + net-tools \ + nano \ + curl \ && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* EXPOSE 3000