e3w
e3w copied to clipboard
Does e3w support arm architecture
Does e3w support arm architecture
I think it could. I've just built and pushed an arm64 image at here.But I have no environments to test it, maybe you could try it and give some feedbacks.
@soyking @Andydufresneguohao I rebuild e3w image for linux/arm64 then I test it on a m1 Mac . Fortunately it can support arm arch and running well.
You guys can add a "--platform" option in the Dockerfile to try it.
Dockerfile:
FROM --platform=linux/arm64 golang:1.14 as backend RUN mkdir -p /e3w ADD . /e3w WORKDIR /e3w ...