From 15599ca4f5e826bb2b81d9c0bd046bb65ec0518f Mon Sep 17 00:00:00 2001 From: chris48s <chris48s@users.noreply.github.com> Date: Thu, 15 Aug 2024 23:35:26 +0100 Subject: [PATCH] remove libraries we don't need in docker build (#10443) --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 86f3e8e05f..4ecca5beea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,6 @@ COPY package.json package-lock.json /usr/src/app/ # Without the badge-maker package.json and CLI script in place, `npm ci` will fail. COPY badge-maker /usr/src/app/badge-maker/ -RUN apk add python3 make g++ RUN npm install -g "npm@^9.0.0" # We need dev deps to build the front end. We don't need Cypress, though. RUN NODE_ENV=development CYPRESS_INSTALL_BINARY=0 npm ci -- GitLab