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 2d94145 commit c9a3a28Copy full SHA for c9a3a28
Dockerfile
@@ -6,8 +6,10 @@ RUN npm install
6
COPY . .
7
RUN npm run build
8
9
-RUN pip3 install pylint
+RUN apt-get update \
10
+ && apt-get install -y python3-pip \
11
+ && pip3 install pylint
12
-RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.41.1 && cp ~/bin/golangci-lint /usr/local/bin/golangci-lint
13
+RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.41.1 && cp ./bin/golangci-lint /usr/local/bin/golangci-lint
14
15
CMD ["npm", "run", "start:prod"]
0 commit comments