mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 18:23:28 +00:00
12 lines
177 B
Docker
12 lines
177 B
Docker
# 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"]
|
|
|