From 635b6929b9b7fc7341b85d7a55dc0c2c23bfc634 Mon Sep 17 00:00:00 2001 From: Aaron Trudeau <36064197+trudeaua21@users.noreply.github.com> Date: Thu, 21 Oct 2021 01:19:15 -0400 Subject: [PATCH] Revert "Test removing jq install from Dockerfile" This reverts commit 6aa7a6f44365495960f1e470e9fcf90f369683f0. --- action/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/action/Dockerfile b/action/Dockerfile index f420b80..b694818 100644 --- a/action/Dockerfile +++ b/action/Dockerfile @@ -10,6 +10,13 @@ LABEL "repository"="http://github.com/webbertakken/unity-actions" LABEL "homepage"="http://github.com/webbertakken/unity-actions" LABEL "maintainer"="Webber Takken " +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