File tree 2 files changed +3
-10
lines changed
2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 1
1
FROM golang:1.11-alpine
2
2
3
3
ENV PROTO_VERSION 3.3.0
4
- ENV DCOMP_VERSION 1.23.2
5
4
6
- RUN apk add --update --no-cache nodejs npm make curl unzip git python bash gcc docker build-base
5
+ RUN apk add --update --no-cache nodejs npm make curl unzip git python3 bash gcc docker build-base jq
7
6
8
- RUN curl -L "https://github.com/docker/compose/releases/download/${DCOMP_VERSION}/docker-compose-linux-x86_64" -o /usr/local/bin/ docker-compose
7
+ RUN pip3 install docker-compose
9
8
RUN curl -OL https://github.com/google/protobuf/releases/download/v${PROTO_VERSION}/protoc-${PROTO_VERSION}-linux-x86_64.zip
10
9
RUN unzip protoc-${PROTO_VERSION}-linux-x86_64.zip -d protobuf
11
10
RUN cp protobuf/bin/protoc /usr/bin/protoc
@@ -18,7 +17,7 @@ RUN go get -u github.com/golang/dep/cmd/dep
18
17
# install aws auth binaries
19
18
RUN curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
20
19
RUN unzip awscli-bundle.zip
21
- RUN ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws
20
+ RUN python3 ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws
22
21
23
22
# install gcloud auth binaries
24
23
RUN curl https://sdk.cloud.google.com | bash
Original file line number Diff line number Diff line change 4
4
# - Docker compose
5
5
# - jq
6
6
7
- if [[ " $( which ipfs) " == " " ]]
8
- then
9
- echo " Integration test requires IPFS"
10
- exit 1
11
- fi
12
-
13
7
# Integration test dir
14
8
cd " $( dirname " $0 " ) "
15
9
You can’t perform that action at this time.
0 commit comments