(should fail) add jq install to docker image
parent
3e969f16b2
commit
db9152881f
|
@ -10,6 +10,13 @@ LABEL "repository"="http://github.com/webbertakken/unity-actions"
|
||||||
LABEL "homepage"="http://github.com/webbertakken/unity-actions"
|
LABEL "homepage"="http://github.com/webbertakken/unity-actions"
|
||||||
LABEL "maintainer"="Webber Takken <webber@takken.io>"
|
LABEL "maintainer"="Webber Takken <webber@takken.io>"
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get upgrade -y --force-yes \
|
||||||
|
&& apt-get install -y --force-yes \
|
||||||
|
jq \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/*
|
||||||
|
|
||||||
ADD steps /steps
|
ADD steps /steps
|
||||||
RUN chmod -R +x /steps
|
RUN chmod -R +x /steps
|
||||||
ADD entrypoint.sh /entrypoint.sh
|
ADD entrypoint.sh /entrypoint.sh
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
echo "TEMP should print the jq version"
|
||||||
|
jq --version
|
||||||
|
|
||||||
#
|
#
|
||||||
# Set and display project path
|
# Set and display project path
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue