bump a3go, move files, Readme updates

This commit is contained in:
2023-10-10 18:34:35 -07:00
parent 36820c57f3
commit 7a8356c92c
6 changed files with 73 additions and 82 deletions

11
build/Dockerfile.build Normal file
View File

@@ -0,0 +1,11 @@
# build Golang app for Linux
FROM golang:1.20
WORKDIR /app
# get gcc-multilib and gcc-mingw-w64
RUN apt update
RUN apt install -y gcc-multilib gcc-mingw-w64
CMD ["/bin/sh"]