Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 424 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 424 Bytes

rpi-golang

Docker image containing Go 1.6.1 binaries compatible with the Raspberry Pi.

Example: Run and attach the Docker image with a volume mount

docker run -ti -v /data/docker/go:/data apicht/rpi-golang

Example: Reference this image from another Dockerfile to run a Go-dependent application

FROM apicht/rpi-golang:latest
RUN go get github.com/golang/example/hello
CMD ["hello"]