From b48385a2042fd8d66e60e6dbad912c9608ec4b51 Mon Sep 17 00:00:00 2001 From: Jakub Filo Date: Sun, 30 Apr 2023 16:22:17 +0000 Subject: [PATCH] lock the node version to 12, this failed to build in 2023 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2256768..7b35211 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:alpine AS builder +FROM node:12-alpine AS builder WORKDIR /opt/mx-puppet-xmpp @@ -34,7 +34,7 @@ COPY src/ ./src/ RUN npm run build -FROM node:alpine +FROM node:12-alpine VOLUME /data