From d221164e020184779feb44b644349f003527e4bf Mon Sep 17 00:00:00 2001 From: Timmo <28114703+timmo001@users.noreply.github.com> Date: Fri, 24 Aug 2018 19:05:02 +0100 Subject: [PATCH] :arrow_up: update base --- home-panel/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-panel/Dockerfile b/home-panel/Dockerfile index f4a92c6..478dd69 100644 --- a/home-panel/Dockerfile +++ b/home-panel/Dockerfile @@ -24,7 +24,7 @@ WORKDIR /usr/src/app # Download and unzip into nginx html directory RUN \ - wget https://github.com/timmo001/home-panel/releases/download/v0.5.3/home-panel-built.zip \ + wget https://github.com/timmo001/home-panel/releases/download/v0.5.4/home-panel-built.zip \ && unzip home-panel-built.zip \ && rm -Rf /usr/share/nginx/html/* \ && mv build/* /usr/share/nginx/html \ @@ -36,7 +36,7 @@ WORKDIR /usr/src/api # Clone and checkout API release RUN \ git clone https://github.com/timmo001/home-panel-api.git ./ \ - && git checkout v0.2.3 + && git checkout v0.2.4 # Install dependencies RUN yarn install && yarn cache clean