You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 23, 2021. It is now read-only.
Tried to get docui running on raspberry pi 64bit
To build it directly via docker you may use following:
# build docuiFROM golang:1.16.0 AS build-docui
ENV GOOS linux
ENV GOARCH=arm
ENV GOARM=7
ENV CGO_ENABLED 0
COPY . ./src/github.com/skanehira/docui
WORKDIR /go/src/github.com/skanehira/docui
RUN go build
# copy artifact from the build stageFROM busybox:1.33
ENV TERM "xterm-256color"COPY --from=build-docui /go/src/github.com/skanehira/docui/docui /usr/local/bin/docui
ENTRYPOINT ["docui"]```
Maybe someone could do a multiarch Dockerfile
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Tried to get docui running on raspberry pi 64bit
To build it directly via docker you may use following:
The text was updated successfully, but these errors were encountered: