Revert "Test removing jq install from Dockerfile"

This reverts commit 6aa7a6f443.
pull/164/head
Aaron Trudeau 2021-10-21 01:19:15 -04:00
parent 6aa7a6f443
commit 635b6929b9
No known key found for this signature in database
GPG Key ID: 29F89A9BDAAF7BDE
1 changed files with 7 additions and 0 deletions

View File

@ -10,6 +10,13 @@ LABEL "repository"="http://github.com/webbertakken/unity-actions"
LABEL "homepage"="http://github.com/webbertakken/unity-actions"
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
RUN chmod -R +x /steps
ADD entrypoint.sh /entrypoint.sh