From c38d90d68507fa14e7de92f9ea06082b700dc9fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFs=20Poujade?= <lois.poujade@tetras-libre.fr> Date: Tue, 8 Nov 2022 11:16:40 +0100 Subject: [PATCH] Alpine can't build some npm deps because of musl --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 78ed874..ba72fd7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM alpine:latest as builder -RUN apk add npm git +FROM debian:stable as builder +RUN apt-get update && apt-get install -y npm git COPY . /opt WORKDIR /opt -- GitLab