From 56c8318c74f8cd2d2ee3dceb48553113ccb7b695 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 6 Jan 2024 09:20:47 +0100 Subject: [PATCH] Remove python3 dependency --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 50666c01..18213617 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,9 @@ WORKDIR /app COPY package.json yarn.lock .yarnrc.yml /app/ COPY .yarn/releases/ /app/.yarn/releases/ -RUN apk add --update --no-cache python3 g++ make\ +RUN apk add --update --no-cache g++ make\ && yarn install\ - && apk del python3 g++ make + && apk del g++ make COPY . /app