mirror of
https://github.com/planetmint/planetmint.git
synced 2025-03-30 15:08:31 +00:00
9 lines
215 B
Docker
9 lines
215 B
Docker
FROM openresty/openresty:alpine
|
|
RUN apk update \
|
|
&& apk upgrade \
|
|
&& apk add bash
|
|
COPY nginx.conf.template /etc/nginx/nginx.conf
|
|
COPY nginx_entrypoint.bash /
|
|
EXPOSE 443
|
|
ENTRYPOINT ["/nginx_entrypoint.bash"]
|