From 29f3ff5befb602b3b2b3fbea34eb12b5fc05709d Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Date: Fri, 10 Apr 2026 20:21:15 +0200 Subject: [PATCH] chore(ci): use alpine base for simple docker build --- Dockerfile.simple | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.simple b/Dockerfile.simple index b11f7e5..46a1a7c 100644 --- a/Dockerfile.simple +++ b/Dockerfile.simple @@ -1,4 +1,4 @@ -FROM node:20-slim +FROM node:20-alpine WORKDIR /app @@ -6,8 +6,8 @@ WORKDIR /app ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 ENV CYPRESS_INSTALL_BINARY=0 -# Install dependencies -RUN apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/* +# Install build dependencies +RUN apk add --no-cache python3 make g++ # Copy package files COPY package*.json ./