Ensure readonly-modules when installing tools

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2020-04-18 13:26:19 +02:00
parent 3f5e4a5a4a
commit 8b499e93f0
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E
2 changed files with 23 additions and 4 deletions

View File

@ -1,5 +1,7 @@
FROM golang:alpine as builder
ENV GO111MODULE=on
COPY . /src
WORKDIR /src
@ -9,10 +11,7 @@ RUN set -ex \
curl \
git \
make \
&& go get -v \
github.com/Luzifer/bind-log-metrics \
github.com/Luzifer/named-blacklist \
github.com/Luzifer/rootzone \
&& bash /src/gotools.sh \
&& rootzone >named.stubs \
&& make blacklist

20
gotools.sh Normal file
View File

@ -0,0 +1,20 @@
#!/bin/bash
set -euxo pipefail
packages=(
github.com/Luzifer/bind-log-metrics
github.com/Luzifer/named-blacklist
github.com/Luzifer/rootzone
)
for pkg in "${packages[@]}"; do
targetdir="/go/src/${pkg}"
# Get sources
git clone "https://${pkg}.git" "${targetdir}"
# Go to directory and install util
pushd "${targetdir}"
go install -mod=readonly
popd
done