From 2badacf6072d4ad6413ecd733bd9a237441b01b6 Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Tue, 10 Dec 2024 22:36:29 +0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a07ced..080796c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,6 @@ FROM nginx:alpine-slim RUN rm -rf /usr/share/nginx/html/* COPY --from=build /usr/local/app/build/ /usr/share/nginx/html COPY nginx/nginx.conf /etc/nginx/conf.d/default.conf -RUN service nginx restart +RUN rc-service nginx restart EXPOSE 80