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