predixy
predixy copied to clipboard
ARM64 builds?
Does predixy support ARM64 build now? Is there ARM64 Images?
I'm not sure.
We can use this Dockerfile to build predixy ARM64 image:
FROM arm64v8/ubuntu:18.04
LABEL maintainer="duyanghao <[email protected]>"
ENV VERSION 1.0.4
RUN apt-get update && apt-get upgrade -y \
&& apt-get install -y build-essential wget unzip \
&& wget --no-check-certificate https://github.com/joyieldInc/predixy/archive/${VERSION}.zip -O predixy-${VERSION}.zip \
&& unzip predixy-${VERSION}.zip \
&& cd predixy-${VERSION} \
&& make \
&& mv src/predixy /usr/local/bin \
&& mkdir -p /etc/predixy/conf
ADD conf /etc/predixy/conf
CMD ["/usr/local/bin/predixy", "/etc/predixy/conf/predixy.conf"]