You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN go test -c -ldflags "-linkmode external -extldflags -static" -o /go/bin/grpc-gateway.test
8
+
9
+
#certificate-generator
10
+
ARG service=kit
11
+
WORKDIR /
12
+
RUN cd $GOPATH/pkg/mod/github.com/plgd-dev/kit/v2* && go build -ldflags "-linkmode external -extldflags -static" -o /go/bin/certificate-generator ./cmd/certificate-generator
13
+
14
+
#nats
15
+
WORKDIR $root_directory
16
+
RUN curl -L https://github.com/nats-io/nats-server/releases/download/v2.3.1/nats-server-v2.3.1-linux-amd64.zip -o ./nats-server.zip
17
+
RUN mkdir -p ./nats-server
18
+
RUN unzip ./nats-server.zip -d ./nats-server
19
+
RUN cp ./nats-server/*/nats-server /go/bin/nats-server
20
+
21
+
RUN curl -L https://github.com/nats-io/natscli/releases/download/0.0.24/nats-0.0.24-linux-amd64.zip -o ./nats.zip
0 commit comments