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

Commit

Permalink
e2e: fix gortc-turn server.Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ernado committed May 25, 2019
1 parent 002f233 commit 5a43385
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions e2e/gortc-turn/server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
FROM golang:latest
FROM golang:1.12

ADD vendor /go/src/github.com/gortc/gortcd/vendor
ADD main.go /go/src/github.com/gortc/gortcd/
ADD internal /go/src/github.com/gortc/gortcd/internal
ADD go.mod /src/gortcd/
ADD go.sum /src/gortcd/
WORKDIR /src/gortcd/
RUN go mod download

ADD main.go /src/gortcd/
ADD internal /src/gortcd/internal

WORKDIR /go/src/github.com/gortc/gortcd
RUN go install .
COPY e2e/gortc-turn/gortcd.yml .

Expand Down

0 comments on commit 5a43385

Please sign in to comment.