fix: adding git to docker image

This commit is contained in:
Mikeal Rogers 2019-05-23 19:12:30 +00:00
parent f2103bf5db
commit 640f58fd6e
1 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,9 @@ LABEL com.github.actions.icon="package"
LABEL com.github.actions.color="red"
COPY LICENSE README.md /
RUN apt-get update
RUN apt-get -y install git
COPY "entrypoint.sh" "/entrypoint.sh"
ENTRYPOINT ["/entrypoint.sh"]
CMD ["help"]