Skip to content
This repository has been archived by the owner on May 27, 2021. It is now read-only.

Commit

Permalink
e2e: update turn-client and stun-client Dockerfile-s
Browse files Browse the repository at this point in the history
  • Loading branch information
ernado committed May 25, 2019
1 parent 51fd092 commit 49d48c3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions e2e/gortc-stun/stun-client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
ARG CI_GO_VERSION
FROM golang:${CI_GO_VERSION}

ADD . /go/src/github.com/gortc/gortcd/e2e/gortc-turn/turn-client
WORKDIR /go/src/github.com/gortc/gortcd/e2e/gortc-turn/turn-client
ADD go.mod /src/stun-client/
ADD go.sum /src/stun-client/
WORKDIR /src/stun-client/
RUN go mod download

ADD main.go /src/stun-client/

RUN go install .

CMD ["turn-client"]
9 changes: 7 additions & 2 deletions e2e/gortc-turn/turn-client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
ARG CI_GO_VERSION
FROM golang:${CI_GO_VERSION}

ADD . /src/turn-client
WORKDIR /src/turn-client
ADD go.mod /src/turn-client/
ADD go.sum /src/turn-client/
WORKDIR /src/turn-client/
RUN go mod download

ADD main.go /src/turn-client/

RUN go install .

CMD ["turn-client"]

0 comments on commit 49d48c3

Please sign in to comment.