Skip to content

Commit 7d94e11

Browse files
fix(dockerfile): revert replacement of nginx image with non-privileged one (#716)
Fixes #714
1 parent e87f4b1 commit 7d94e11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ COPY . .
1010
RUN pnpm build
1111

1212
# production stage
13-
FROM nginxinc/nginx-unprivileged:stable-alpine AS production-stage
13+
FROM nginx:stable-alpine AS production-stage
1414
COPY --from=build-stage /app/dist /usr/share/nginx/html
1515
COPY nginx.conf /etc/nginx/conf.d/default.conf
1616
EXPOSE 80
17-
CMD ["nginx", "-g", "daemon off;"]
17+
CMD ["nginx", "-g", "daemon off;"]

0 commit comments

Comments
 (0)