From a832aeb8038d5d8519f6441e4c2b7fcecf8977b5 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Thu, 9 Dec 2021 13:28:55 +1000 Subject: [PATCH] docker: Build docker image based on the local codebase. - Like the snap and appimage builds do. --- packaging/Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/packaging/Dockerfile b/packaging/Dockerfile index 739de67..f3e845c 100644 --- a/packaging/Dockerfile +++ b/packaging/Dockerfile @@ -4,11 +4,8 @@ FROM ubuntu:impish -RUN apt update && apt install -y git sudo -RUN git clone https://github.com/ahamilton/eris -RUN cd eris && git checkout 7fa155da72fa6062edf782c6375fb36758ecb0e6 -RUN rm -rf eris/.git -RUN DEBIAN_FRONTEND=noninteractive apt install -y tzdata +RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y sudo tzdata +COPY . eris RUN cd eris && ./install ENTRYPOINT ["eris"]