Add curl to Dockerfile

This commit is contained in:
2026-04-24 17:43:53 -03:00
parent a3ead13ec6
commit 99d85c96e5
+2 -2
View File
@@ -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