Minimal Dockerfile

This commit is contained in:
Dmitri Bogomolov 2018-06-21 12:58:25 +03:00
parent 5e0d168db6
commit a6c22a1d9e
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13
1 changed files with 9 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
# A container for PyBitmessage daemon
FROM python:2.7-slim
WORKDIR /bitmessaged
ADD . /bitmessaged
RUN python2 setup.py install
EXPOSE 8444 8442
ENV BITMESSAGE_HOME /bitmessaged
CMD ["pybitmessage", "-d"]