hivedav-website

Website for HiveDAV
git clone https://git.in0rdr.ch/hivedav-website.git
Log | Files | Refs | Pull requests |Archive | README | LICENSE

Dockerfile (210B)


      1 FROM docker.io/ruby:3.2
      2 
      3 WORKDIR /usr/src/app
      4 COPY . /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"]