nomad

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

Dockerfile (277B)


      1 FROM docker.io/arm64v8/ruby:3.2
      2 
      3 RUN git clone --depth 1 https://git.in0rdr.ch/myheats-website.git /usr/src/app
      4 WORKDIR /usr/src/app
      5 
      6 RUN bundle config set path 'vendor/bundle'
      7 RUN bundle install
      8 CMD ["bundle", "exec", "jekyll", "serve", "--host", "0.0.0.0", "--port", "4000"]