From 1afcc1dcf73c1d4297f042caf5c5ec56cec1084a Mon Sep 17 00:00:00 2001 From: Milan Steiner Date: Tue, 1 Mar 2022 16:40:28 +0100 Subject: [PATCH] Remove docs/faucet.Dockerfile --- docs/faucet.Dockerfile | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 docs/faucet.Dockerfile diff --git a/docs/faucet.Dockerfile b/docs/faucet.Dockerfile deleted file mode 100644 index 7546b5e1..00000000 --- a/docs/faucet.Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -# The only officially supported distribution channel of the faucet binary is @cosmjs/faucet on npmjs.com -# This is an example file of how to wrap the faucet in a docker container. -# This file will be outdated very soon, but should work as a template for your custom docker setup. - -# Coose from https://hub.docker.com/_/node/ -FROM node:12.18.3-alpine - -RUN yarn global add @cosmjs/faucet@0.23.0 - -# Check it exists -RUN /usr/local/bin/cosmos-faucet version - -EXPOSE 8000 -ENTRYPOINT ["/usr/local/bin/cosmos-faucet"] -CMD [""]