yq/github-action/Dockerfile

9 lines
156 B
Docker
Raw Normal View History

2021-08-26 23:33:57 +00:00
FROM mikefarah/yq:4.12.1
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"]