Skip to content

Commit

Permalink
add gomod var
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-goldstein committed Feb 18, 2023
1 parent bafb94d commit 3582818
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions graphql/e2e/custom_logic/cmd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ COPY . .

RUN apk update && apk add git && apk add nodejs && apk add npm

RUN go install gopkg.in/yaml.v2@latest
# As of Go 1.16 modules are on by default
RUN go env -w GO111MODULE=auto

RUN go install github.com/graph-gophers/graphql-go@latest
RUN go get gopkg.in/yaml.v2

RUN go get github.com/graph-gophers/graphql-go

RUN npm install

Expand Down

0 comments on commit 3582818

Please # to comment.