bolkedebruin / rdpgw

Remote Desktop Gateway in Go for deploying on Linux/BSD/Kubernetes
Apache License 2.0
698 stars 115 forks source link

Arm 64 docker image #71

Closed opalfruit79 closed 1 year ago

opalfruit79 commented 1 year ago

I was hoping to run this on an arm 64 device.

Trying to get this to compile with go, is not working for me, Maybe because I am a bit of a newbie.

I am attempting to run this on a pi. The docker sadly did not work, and I suspect that its not compiled for arm64.

Many thanks,

Sam.

bolkedebruin commented 1 year ago

I'm not sure where it goes wrong for you, but there is a docker image for arm64. You try to for it by doing

docker pull --platform=linux/arm64 bolkedebruin/rdpgw

if you want to build it with go on your own the following should work

env GOOS=linux GOARCH=arm64 make mod build

should work. If it doesn't you will need to dive into some docs I guess :-)

opalfruit79 commented 1 year ago

Thankyou so much for getting back to me, I really appreciate it :) I will give it all a go