mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

- Update existing docker-containers to support tendermint integration, nginx, mongodb, bigchaindb - Add tendermint configuration files for statefulset, pvc, pv and service. - Update some READMEs.
13 lines
330 B
Docker
13 lines
330 B
Docker
FROM nginx:stable
|
|
LABEL maintainer "dev@bigchaindb.com"
|
|
WORKDIR /
|
|
RUN apt-get update \
|
|
&& apt-get -y upgrade \
|
|
&& apt-get autoremove \
|
|
&& apt-get clean
|
|
COPY nginx.conf.template /etc/nginx/conf.d/access_pub_key.conf
|
|
COPY nginx_entrypoint.bash /
|
|
VOLUME /usr/share/nginx
|
|
EXPOSE 9986
|
|
ENTRYPOINT ["/nginx_entrypoint.bash"]
|