Added basic script to build in Docker to use newer version

This commit is contained in:
Seednode 2023-08-11 21:07:14 -05:00
parent 172db15454
commit 6a18376f2e
1 changed files with 2 additions and 0 deletions

2
build-docker.sh Executable file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env bash
docker run -it --rm -v $(pwd):/code golang:alpine /bin/ash -c 'apk update && apk add bash && cd /code && ./build.sh'