mirror of
https://github.com/planetmint/planetmint.git
synced 2025-03-30 15:08:31 +00:00
12 lines
306 B
Docker
12 lines
306 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.template /etc/nginx/nginx.conf
|
|
COPY nginx_entrypoint.bash /
|
|
EXPOSE 80 27017 9986 26656
|
|
ENTRYPOINT ["/nginx_entrypoint.bash"]
|