aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@eficode.com>2019-12-23 15:31:19 +0200
committerJan Tuomi <jan.tuomi@eficode.com>2019-12-23 15:31:19 +0200
commit377ed95f74a0141b12cb2cb04f57081c26524cd1 (patch)
tree9f8850d33a80e455e3156ade99c326f3cdf0ab82 /Dockerfile
parentcfbfb43a5e06aac134002900a8630715dec1b9cb (diff)
Implement method 1 with envsubstmaster
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" ]