Add new files from upstream

This commit is contained in:
2022-10-10 13:09:51 -04:00
parent c1cfa9ded4
commit a9334bf178
16 changed files with 2708 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
FROM ruby:2.7
WORKDIR /home/app
COPY Gemfile* ./
RUN bundle install
COPY . .
CMD [ "bundle", "exec", "jekyll", "serve" ]