yq/github-action/Dockerfile

10 lines
244 B
Docker
Raw Permalink Normal View History

2021-11-23 23:59:31 +00:00
FROM mikefarah/yq:4
2020-02-24 09:04:45 +00:00
COPY entrypoint.sh /entrypoint.sh
2022-09-09 01:14:25 +00:00
# github action recommendation is to run as root.
# https://docs.github.com/en/actions/creating-actions/dockerfile-support-for-github-actions#user
USER root
2021-07-15 23:58:40 +00:00
2020-02-24 09:04:45 +00:00
ENTRYPOINT ["/entrypoint.sh"]