Skip to content

Commit 7883fbd

Browse files
committed
chore: update entrypoint to setup https
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 1d9634b commit 7883fbd

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.docker/Dockerfile.nginx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
FROM nginx:alpine
22

3-
COPY nginx/nginx.conf /etc/nginx/nginx.conf
3+
RUN apk add --no-cache openssl
4+
5+
COPY nginx/nginx.conf /etc/nginx/nginx.conf
6+
COPY nginx/config/ /etc/nginx/conf.d/
7+
COPY scripts/nginx-entrypoint.sh /usr/local/bin/nginx-entrypoint.sh
8+
9+
RUN chmod +x /usr/local/bin/nginx-entrypoint.sh
10+
11+
ENTRYPOINT ["/usr/local/bin/nginx-entrypoint.sh"]

0 commit comments

Comments
 (0)