From d054d4c7268e38dbeb98f17157075c9ab0938cda Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Sun, 24 May 2026 21:56:15 +0000 Subject: [PATCH] Fix frontend Dockerfile: apk instead of apt-get for nginx:alpine --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 6d9a2b3..e7f0433 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -10,7 +10,7 @@ COPY . . RUN npm run build FROM nginx:alpine -RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* +RUN apk add --no-cache curl COPY --from=build /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf