mirror of
https://github.com/openziti/zrok.git
synced 2024-11-26 01:54:09 +01:00
36 lines
1.0 KiB
Docker
36 lines
1.0 KiB
Docker
FROM debian:bullseye-slim
|
|
#
|
|
# this file mirrors the build params used in the GitHub Actions and enables
|
|
# reproducible builds for downstream forks for Ziti contributors
|
|
#
|
|
|
|
ARG TARGETARCH
|
|
ARG golang_version=1.19.5
|
|
ARG go_distribution_file=go${golang_version}.linux-${TARGETARCH}.tar.gz
|
|
ARG go_path=/usr/share/go
|
|
ARG go_root=/usr/local/go
|
|
ARG go_cache=/usr/share/go_cache
|
|
ARG uid=1000
|
|
ARG gid=1000
|
|
RUN apt-get -y update
|
|
RUN apt-get -y install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf gcc-aarch64-linux-gnu
|
|
RUN apt-get -y install wget build-essential
|
|
|
|
COPY ./linux-build.sh /usr/local/bin/
|
|
RUN wget -q https://go.dev/dl/${go_distribution_file}
|
|
RUN tar -xzf ${go_distribution_file} -C /usr/local/
|
|
|
|
RUN mkdir ${go_path} ${go_cache}
|
|
RUN chown -R ${uid}:${gid} ${go_path} ${go_cache}
|
|
|
|
USER ${uid}:${gid}
|
|
ENV TARGETARCH=${TARGETARCH}
|
|
ENV GOPATH=${go_path}
|
|
ENV GOROOT=${go_root}
|
|
ENV GOCACHE=${go_cache}
|
|
ENV PATH=${go_path}/bin:${go_root}/bin:$PATH
|
|
RUN go install github.com/mitchellh/gox@latest
|
|
WORKDIR /mnt
|
|
ENTRYPOINT ["linux-build.sh"]
|
|
|