From d5af4cb0684f58953402fa68cf58a27fa58a1e82 Mon Sep 17 00:00:00 2001 From: craph <14820052+craph@users.noreply.github.com> Date: Wed, 28 Feb 2024 22:07:19 +0100 Subject: [PATCH] chore: fix python issue for node18 in dev Dockerfile (#7029) * Fix: email toLowerCase * Fix python issue for node18 in Dockerfile --- dev/containers/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/containers/Dockerfile b/dev/containers/Dockerfile index 36a777f8..5d404880 100644 --- a/dev/containers/Dockerfile +++ b/dev/containers/Dockerfile @@ -5,7 +5,7 @@ FROM node:18 LABEL maintainer "requarks.io" RUN apt-get update && \ - apt-get install -y bash curl git python make g++ nano openssh-server gnupg && \ + apt-get install -y bash curl git python3 make g++ nano openssh-server gnupg && \ mkdir -p /wiki WORKDIR /wiki