Docker file added and readme updated

This commit is contained in:
iamrobins
2022-06-29 23:20:18 +05:30
parent fa7a624f49
commit cc79ae5009
3 changed files with 25 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM ruby:2.7
WORKDIR /home/app
COPY Gemfile* ./
RUN bundle install
COPY . .
CMD [ "bundle", "exec", "jekyll", "serve" ]