action-shellcheck/Dockerfile

8 lines
190 B
Docker
Raw Permalink Normal View History

2020-06-27 19:42:52 +02:00
FROM alpine:3.12.0
2019-03-09 11:25:14 +01:00
2020-05-30 00:06:50 +02:00
RUN apk add --no-cache shellcheck bash
2019-03-09 11:25:14 +01:00
2020-06-27 19:42:52 +02:00
COPY runaction /action/runaction
2020-07-28 14:21:49 +02:00
COPY .github/problem-matcher.json /problem-matcher.json
2020-06-27 19:42:52 +02:00
ENTRYPOINT ["bash", "/action/runaction"]