reverted som changes in the proxy.

This commit is contained in:
jash
2018-10-10 21:36:01 +02:00
committed by kexkey
parent 78beb9d5cc
commit 0af6c5fd1f
2 changed files with 1 additions and 16 deletions

View File

@@ -20,7 +20,6 @@ services:
- "DERIVATION_PATH=<%= derivation_path %>"
- "WATCHER_BTC_NODE_PRUNED=<%= bitcoin_prune?'true':'false' %>"
image: cyphernode/proxy
command: "$USER /app/startproxy.sh"
<% if ( devmode ) { %>
ports:
- "8888:8888"

View File

@@ -1,18 +1,3 @@
FROM alpine as builder
RUN set -x\
&& apk add --no-cache\
gcc\
make\
git\
musl-dev
RUN git clone https://github.com/ncopa/su-exec.git /su-exec
WORKDIR /su-exec
RUN make
RUN strip su-exec
FROM alpine
ENV HOME /proxy
@@ -56,3 +41,4 @@ RUN chmod +x startproxy.sh requesthandler.sh lightning-cli \
VOLUME ["${HOME}/db", "${HOME}/.lightning"]
ENTRYPOINT ["su-exec"]