mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-14 00:13:28 +00:00
10 lines
177 B
Docker
10 lines
177 B
Docker
# build Golang app for Linux
|
|
FROM golang:latest
|
|
|
|
WORKDIR /app
|
|
|
|
# get gcc-multilib and gcc-mingw-w64
|
|
RUN apt update
|
|
RUN apt install -y gcc-multilib gcc-mingw-w64
|
|
|
|
CMD ["/bin/sh"] |