diff --git a/Dockerfile b/Dockerfile index 613236b..c7ba352 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,9 @@ FROM archlinux/base:latest RUN pacman --sync \ --refresh \ --noconfirm \ - --sysupgrade go gcc make git go-bindata + --sysupgrade go gcc make git which -ENV PATH="/root/.cargo/bin:${PATH}" +ENV PATH="/root/.cargo/bin:/root/go/bin:${PATH}" COPY installation-scripts /tmp/installation-scripts RUN chmod +x /tmp/installation-scripts/* && \ diff --git a/installation-scripts/03-go-bindata.sh b/installation-scripts/03-go-bindata.sh new file mode 100644 index 0000000..b4b380a --- /dev/null +++ b/installation-scripts/03-go-bindata.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +go get -u github.com/go-bindata/go-bindata/... \ No newline at end of file