FROM jekyll/jekyll:3.8.6 WORKDIR /app COPY Gemfile* ./ RUN bundle install COPY . ./ EXPOSE 4000 CMD [ "jekyll", "serve", "--livereload" ]