diff options
author | Kegsay <kegan@matrix.org> | 2020-06-02 16:35:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-02 16:35:07 +0100 |
commit | dc3338d1f299555148cbf406c5b2bd823f3ca038 (patch) | |
tree | 4a9a4c19b048c3858311663d2422826178eca7b2 /build/docker | |
parent | e598e80d7659f3da323a92c07e5092172e16ca2c (diff) |
Remove ENV to avoid confusion
Diffstat (limited to 'build/docker')
-rw-r--r-- | build/docker/DendriteJS.Dockerfile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/build/docker/DendriteJS.Dockerfile b/build/docker/DendriteJS.Dockerfile index 2dc6ef01..9a84a370 100644 --- a/build/docker/DendriteJS.Dockerfile +++ b/build/docker/DendriteJS.Dockerfile @@ -3,11 +3,6 @@ # as it pulls archives straight from github branches. FROM golang:1.13.7-alpine3.11 AS gobuild -# TODO: This does nothing currently ;) -# or /dns4/rendezvous.matrix.org/tcp/8443/wss/p2p-websocket-star/ -# or whatever you want! -ENV RENDEZVOUS_SERVER=/ip4/127.0.0.1/tcp/9090/ws/p2p-websocket-star/ - # Download and build dendrite WORKDIR /build ADD https://github.com/matrix-org/dendrite/archive/master.tar.gz /build/master.tar.gz @@ -109,4 +104,4 @@ server { \n\ } \n\ }' > /etc/nginx/conf.d/default.conf RUN sed -i 's/}/ application\/wasm wasm;\n}/g' /etc/nginx/mime.types -COPY --from=jsbuild /build/riot-web-matthew-p2p/webapp /usr/share/nginx/html
\ No newline at end of file +COPY --from=jsbuild /build/riot-web-matthew-p2p/webapp /usr/share/nginx/html |