mirror of
https://github.com/indig0fox/Arma3-AttendanceTracker.git/
synced 2025-12-08 01:41:49 -06: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"]
|
|
|