1
0
Fork 0
mirror of https://github.com/ludeeus/action-shellcheck.git synced 2024-08-16 10:09:53 +02:00
shellcheck/Dockerfile

6 lines
142 B
Docker
Raw Normal View History

2020-05-29 23:11:06 +02:00
FROM alpine:3.11.6
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-05-30 00:06:50 +02:00
COPY runaction.sh /action/runaction.sh
2020-05-30 11:44:01 +02:00
ENTRYPOINT ["bash", "/action/runaction.sh"]