From 1122a6fc8e8d898de4a8309cb81654c28074f66b Mon Sep 17 00:00:00 2001 From: Gwendal Leclerc Date: Mon, 2 Oct 2023 20:41:25 +0200 Subject: [PATCH] fix: remove apk in dockerfile as we use debian instead of alpine --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 38f8e1d..5c6fb9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,6 @@ RUN make VERSION=$VERSION COMMIT=$COMMIT RELEASE=1 build FROM node:16-bullseye AS build-frontend WORKDIR /wd ENV PARCEL_WORKERS 1 -# node-gyp dependencies: https://github.com/nodejs/node-gyp#on-unix -RUN apk add --no-cache g++ make python3 COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile COPY tsconfig.json ./