2020-12-27 04:59:59 -08:00
|
|
|
FROM python:3.8-slim
|
2020-03-01 00:15:24 -08:00
|
|
|
|
2020-06-04 16:49:13 -07:00
|
|
|
COPY requirements-itest.txt /
|
2020-03-01 00:15:24 -08:00
|
|
|
|
2020-12-27 04:59:59 -08:00
|
|
|
RUN pip3 install -r requirements-itest.txt
|
2020-03-01 00:15:24 -08:00
|
|
|
|
2020-07-21 01:35:04 -07:00
|
|
|
WORKDIR /app
|
2020-07-18 03:06:39 -07:00
|
|
|
|
2020-07-21 01:35:04 -07:00
|
|
|
COPY proto ./proto
|
2021-10-09 22:26:54 -07:00
|
|
|
COPY itests/test.sh ./
|
2020-07-28 19:49:44 -07:00
|
|
|
COPY itests/tests ./tests
|
2020-03-01 00:15:24 -08:00
|
|
|
|
2020-12-27 04:59:59 -08:00
|
|
|
RUN python3 -m grpc_tools.protoc --proto_path=. --python_out=. --grpc_python_out=. \
|
|
|
|
|
proto/lnd.proto \
|
|
|
|
|
proto/squeak_admin.proto
|
2020-03-01 00:15:24 -08:00
|
|
|
|
|
|
|
|
RUN chmod +x test.sh
|
|
|
|
|
CMD ["bash", "test.sh"]
|