aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index fa980b2..2a4c976 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -11,8 +11,8 @@ RUN npm run build
FROM nginx:alpine AS server
WORKDIR /usr/share/nginx/html
-RUN apk add --no-cache bash
+RUN apk add --no-cache gettext
COPY nginx-entrypoint.sh /
COPY --from=builder /app/dist ./
-ENTRYPOINT [ "bash", "/nginx-entrypoint.sh" ]
+ENTRYPOINT [ "sh", "/nginx-entrypoint.sh" ]