From e983de265fbd566495737f4b094fc4b8ffdad036 Mon Sep 17 00:00:00 2001 From: christiansahlmann Date: Fri, 24 Feb 2023 10:00:56 +0000 Subject: [PATCH] use Node 16 as base Node 18 seems to be causing problems with SSL client certificates --- Dockerfile | 5 +++-- mb_netmgmt/__init__.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 27be1c7..7bfb473 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ -FROM bbyars/mountebank -USER root +FROM node:16-alpine +RUN npm install -g mountebank +ENTRYPOINT ["mb"] RUN apk add \ py3-lxml \ py3-paramiko \ diff --git a/mb_netmgmt/__init__.py b/mb_netmgmt/__init__.py index d28668a..b0d4052 100644 --- a/mb_netmgmt/__init__.py +++ b/mb_netmgmt/__init__.py @@ -18,7 +18,7 @@ # along with mb-netmgmt. If not, see