From 39d73a31c53f72cdcecd24f1b0cd7a02a29f3e50 Mon Sep 17 00:00:00 2001 From: Laurent Goussard Date: Mon, 6 Jun 2022 13:32:56 +0200 Subject: [PATCH] [mirotalksfu] - alpine based docker container --- Dockerfile | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index e85bc3d4..f571647b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,6 @@ -FROM node:latest +FROM node:alpine WORKDIR /src +RUN apk add --update linux-headers alpine-sdk -# gcc g++ make -RUN \ - apt-get update && \ - apt-get install -y build-essential - -# Python 3.8 and pip -RUN \ - apt update && \ - apt install -y python3-pip +RUN apk add --update py-pip