nomad

HCL and Docker files for Nomad deployments
git clone https://git.in0rdr.ch/nomad.git
Log | Files | Refs | Pull requests

Dockerfile (255B)


      1 FROM docker.io/arm64v8/golang:1.21-alpine
      2 
      3 RUN apk update
      4 RUN apk add --no-cache git make g++ musl-dev tzdata
      5 
      6 ENV TZ=Europe/Zurich
      7 WORKDIR /app
      8 RUN git clone --depth 1 https://git.in0rdr.ch/hivedav.git /app
      9 RUN make
     10 
     11 EXPOSE 3737/tcp
     12 
     13 CMD [ "./hivedav" ]