From 29c5d45a0c1858ff57196f185abeed797dd69539 Mon Sep 17 00:00:00 2001 From: Matthew Macdonald-Wallace Date: Fri, 19 Mar 2021 08:25:21 +0000 Subject: [PATCH] Remove unnecessary binaries, update to use github releases --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ccb5988be5..9307832e9f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,10 @@ FROM ubuntu:latest # Make sure that the underlying container is patched to the latest versions RUN apt update && \ - apt install -y wget tar gzip unzip file + apt install -y wget tar gzip # Now install Focalboard as a seperate layer -RUN wget https://releases.mattermost.com/focalboard/0.5.0/focalboard-server-linux-amd64.tar.gz && \ - unzip -o focalboard-server-linux-amd64.tar.gz && \ +RUN wget https://github.com/mattermost/focalboard/releases/download/v0.6.1/focalboard-server-linux-amd64.tar.gz && \ tar -xvzf focalboard-server-linux-amd64.tar.gz && \ mv focalboard /opt