We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4890570 + 548b114 commit 6916f75Copy full SHA for 6916f75
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:10-slim
+FROM node:10-alpine
2
3
LABEL version="1.0.0"
4
LABEL repository="http://github.com/max/awesome-lint"
@@ -10,6 +10,10 @@ LABEL "com.github.actions.description"="Wraps the awesome-lint tool to check awe
10
LABEL "com.github.actions.icon"="play"
11
LABEL "com.github.actions.color"="purple"
12
13
+RUN apk add --no-cache \
14
+ git \
15
+ && rm -rf /var/cache/apk/*
16
+
17
RUN npm install -g awesome-lint
18
19
COPY entrypoint.sh /entrypoint.sh
0 commit comments