From 99d85c96e5716192cf35402b0fa69e37fead4532 Mon Sep 17 00:00:00 2001 From: Sergio Nicolas Lavaise Date: Fri, 24 Apr 2026 17:43:53 -0300 Subject: [PATCH] Add curl to Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c23870a..6fdbb63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,8 @@ FROM node:20-alpine WORKDIR /app -# Install nginx -RUN apk add --no-cache nginx bash +# Install nginx and curl +RUN apk add --no-cache nginx curl bash # Copy built frontend to nginx COPY --from=builder /build/dist /usr/share/nginx/html