yq/github-action/Dockerfile

9 lines
151 B
Docker
Raw 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
2021-07-15 23:58:40 +00:00
# this seems to be the default user in github actions
USER 1001
2020-02-24 09:04:45 +00:00
ENTRYPOINT ["/entrypoint.sh"]