From e5dcb46ef244c2b1b2c3ac5ef95011c775565da0 Mon Sep 17 00:00:00 2001 From: Anuarbek Zhakhangir Date: Sun, 20 Jul 2025 20:38:11 +0900 Subject: [PATCH] fix: move curl installation to the base stage in Dockerfile for clarity --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4db8d4b..d7c86e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,9 @@ FROM node:18-alpine AS base +# Install curl +RUN apk add --no-cache curl + # Install dependencies only when needed FROM base AS deps # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.