diff --git a/Dockerfile b/Dockerfile index 31f25bd0..0c2b566e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN cd /tmp \ && make 2>&1 \ && make install 2>&1 -FROM goflutter/golang-cross:latest AS hover +FROM dockercore/golang-cross:latest AS hover # Add dart apt repository RUN wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - 2>&1 \ diff --git a/install-with-docker-image.sh b/install-with-docker-image.sh new file mode 100755 index 00000000..7fab921d --- /dev/null +++ b/install-with-docker-image.sh @@ -0,0 +1,2 @@ +#!/bin/bash +go install . && DOCKER_BUILDKIT=1 docker build . -t goflutter/hover:latest