From 96c5e24501405f6aed0a8eee2af900f5f4e08a32 Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Thu, 21 Jul 2022 14:55:17 -0700 Subject: [PATCH] Removes make, ssh and g++ --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7ea59f82..cf000e6b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Build assets FROM --platform=$BUILDPLATFORM node:18-alpine as node -RUN apk add --no-cache openssh make g++ util-linux python3 && npm install -g pnpm +RUN apk add --no-cache util-linux python3 && npm install -g pnpm WORKDIR /build