Skip to content

Commit

Permalink
Merge pull request #145 from joshes/fix/include-boatd-client
Browse files Browse the repository at this point in the history
include the boatd-client for convenience
  • Loading branch information
kragniz committed Oct 5, 2018
2 parents ab39a7c + 064e50c commit eee38c0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ COPY ./bin/boatd /usr/local/bin/
RUN sed -i.bak 's/127\.0\.0\.1/0\.0\.0\.0/' /opt/boatd/config/boatd-config.yaml && \
rm /opt/boatd/config/boatd-config.yaml.bak

RUN pip3 install -r requirements.txt && \
RUN apk update && \
apk add git && \
pip3 install -r requirements.txt && \
python3 setup.py install && \
git clone https://github.com/boatd/python-boatd.git && \
cd python-boatd && \
python3 setup.py install && \
rm -rf /build

Expand Down

0 comments on commit eee38c0

Please sign in to comment.