Add chmod +x to start scripts in dockerfiles

This commit is contained in:
Cris Perez 2017-01-22 15:44:15 +01:00 committed by Olaoluwa Osuntokun
parent 68c40b05ff
commit b0d1247531
2 changed files with 5 additions and 0 deletions

View File

@ -35,3 +35,7 @@ VOLUME ["/rpc"]
COPY "start-btcctl.sh" .
COPY "start-btcd.sh" .
RUN chmod +x start-btcctl.sh
RUN chmod +x start-btcd.sh

View File

@ -23,3 +23,4 @@ RUN glide install
RUN go install . ./cmd/...
COPY "docker/lnd/start-lnd.sh" .
RUN chmod +x start-lnd.sh