We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34ffc19 commit 30f1492Copy full SHA for 30f1492
Dockerfile
@@ -7,6 +7,14 @@ RUN apt-get update \
7
8
RUN curl -sSfL https://github.com/raw/golangci/golangci-lint/master/install.sh | sh -s v1.41.1 && cp ./bin/golangci-lint /usr/local/bin/golangci-lint
9
10
+RUN wget https://dl.google.com/go/go1.16.4.linux-amd64.tar.gz \
11
+ && tar -C /usr/local -xzf go1.16.4.linux-amd64.tar.gz \
12
+ && rm go1.16.4.linux-amd64.tar.gz
13
+
14
+ENV GOROOT="/usr/local/go"
15
+ENV GOPATH="/go"
16
+ENV PATH="PATH=/go/bin:/usr/local/go/bin:$PATH"
17
18
WORKDIR /app
19
COPY ./package.json ./
20
RUN npm install
0 commit comments