basic dockerfiles adding arm64 compiler to golang

This commit is contained in:
Dan Ballard 2023-05-15 10:43:54 -07:00
parent a9c2eaf40f
commit e047915170
1 changed files with 5 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM golang:1.19.1
RUN apt-get update \
&& apt-get install -y gcc-aarch64-linux-gnu \
&& rm -rf /var/lib/apt/lists/*