squeaknode/docker/test/Dockerfile
Jonathan Zernik 6aae503de8
Create lightning client base class (#1542)
* Add unit test for add invoice in test lnd lightning client

* Add new create invoice method of lightning client and add unit test
2021-10-08 20:40:58 -07:00

17 lines
333 B
Docker

FROM python:3.8-slim
COPY requirements-itest.txt /
RUN pip3 install -r requirements-itest.txt
WORKDIR /app
COPY proto ./proto
COPY itests/tests ./tests
RUN python3 -m grpc_tools.protoc --proto_path=. --python_out=. --grpc_python_out=. \
proto/lnd.proto \
proto/squeak_admin.proto
RUN chmod +x test.sh
CMD ["bash", "test.sh"]