mirror of
https://github.com/planetmint/planetmint.git
synced 2025-03-30 15:08:31 +00:00
13 lines
379 B
Docker
13 lines
379 B
Docker
FROM nginx:stable
|
|
LABEL maintainer "contact@ipdb.global"
|
|
WORKDIR /
|
|
RUN apt-get update \
|
|
&& apt-get -y upgrade \
|
|
&& apt-get autoremove \
|
|
&& apt-get clean
|
|
COPY nginx.conf.threescale.template /etc/nginx/nginx-threescale.conf
|
|
COPY nginx.conf.template /etc/nginx/nginx.conf
|
|
COPY nginx_entrypoint.bash /
|
|
EXPOSE 80 443 27017 9986 26656
|
|
ENTRYPOINT ["/nginx_entrypoint.bash"]
|