11 lines
260 B
Docker
11 lines
260 B
Docker
FROM chimeralinux/chimera:latest
|
|
|
|
RUN apk update && apk add --no-cache go qemu-user-loongarch64-binfmt git
|
|
|
|
RUN git clone https://forge.wezm.net/wezm/loongfloat.git
|
|
|
|
WORKDIR loongfloat
|
|
|
|
RUN env GOOS=linux GOARCH=loong64 go build .
|
|
|
|
ENTRYPOINT ["./loongfloat"]
|