From 62f6f2116d60d6104e029b8967aa60cdd2896987 Mon Sep 17 00:00:00 2001 From: Timmo Date: Thu, 27 Sep 2018 00:19:25 +0100 Subject: [PATCH] :arrow_up: updates --- .github/settings.yml | 13 ------------- home-panel/Dockerfile | 4 ++-- 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/.github/settings.yml b/.github/settings.yml index ef69f58..d9333ea 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -150,19 +150,6 @@ labels: - name: "Hacktoberfest" description: "Issues/PRs are participating in the Hacktoberfest" color: fbca04 - - name: "API" - description: "API related issue" - color: 54d894 - - name: "Architecture" - description: "Related to how the app works and/or is built" - color: d1924f - - name: "User Interface" - description: "User interface based issues" - color: 607d8b - oldname: "user-interface" - - name: "Code Climate" - description: "Issues created by Code Climate" - color: 42f477 branches: - name: master diff --git a/home-panel/Dockerfile b/home-panel/Dockerfile index 7c9608e..09f2eda 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.6.3/home-panel-built.zip \ + wget https://github.com/timmo001/home-panel/releases/download/v0.6.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.3.0 + && git checkout v0.3.1 # Install dependencies RUN yarn install && yarn cache clean