From 9e853b79d152a53268909e723bda7781288e09f2 Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Wed, 17 Jul 2024 20:14:13 -0300 Subject: [PATCH] added Dockerfile for golang dll build --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3e3d906 --- /dev/null +++ b/Dockerfile @@ -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"] +