added dockerfile for building the libraries for linux

This commit is contained in:
Valmo Trindade
2024-07-22 08:58:40 -03:00
parent 1d28f063ae
commit 974c84fd81

View File

@@ -0,0 +1,10 @@
# 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"]