diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-11-03 13:57:44 +0000 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-11-03 13:57:44 +0000 |
commit | fb2e7d1b058c12188d2fa0eb31d1bccbaa0354b6 (patch) | |
tree | 19741f64833fe3cb95339d919a9250e4df22abad /Dockerfile | |
parent | 9625a79926878c326f0553c576bec768e13b5e6a (diff) |
Put P2P Demos back into their own Dockerfiles
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 34 |
1 files changed, 0 insertions, 34 deletions
@@ -65,40 +65,6 @@ ENTRYPOINT ["/usr/bin/dendrite-monolith-server"] EXPOSE 8008 8448 # -# Builds the Pinecone P2P demo image and contains all required binaries -# -FROM dendrite-base AS demo-pinecone -LABEL org.opencontainers.image.title="Dendrite (Pinecone P2P Demo)" - -COPY --from=build /out/create-account /usr/bin/create-account -COPY --from=build /out/generate-config /usr/bin/generate-config -COPY --from=build /out/generate-keys /usr/bin/generate-keys -COPY --from=build /out/dendrite-demo-pinecone /usr/bin/dendrite-demo-pinecone - -VOLUME /etc/dendrite -WORKDIR /etc/dendrite - -ENTRYPOINT ["/usr/bin/dendrite-demo-pinecone"] -EXPOSE 8008 8448 - -# -# Builds the Yggdrasil P2P demo image and contains all required binaries -# -FROM dendrite-base AS demo-yggdrasil -LABEL org.opencontainers.image.title="Dendrite (Yggdrasil P2P Demo)" - -COPY --from=build /out/create-account /usr/bin/create-account -COPY --from=build /out/generate-config /usr/bin/generate-config -COPY --from=build /out/generate-keys /usr/bin/generate-keys -COPY --from=build /out/dendrite-demo-yggdrasil /usr/bin/dendrite-demo-yggdrasil - -VOLUME /etc/dendrite -WORKDIR /etc/dendrite - -ENTRYPOINT ["/usr/bin/dendrite-demo-yggdrasil"] -EXPOSE 8008 8448 - -# # Builds the Complement image, used for integration tests # FROM base AS complement |