Add new files from upstream
This commit is contained in:
7
cv.bryanroessler.com/.dockerignore
Normal file
7
cv.bryanroessler.com/.dockerignore
Normal file
@@ -0,0 +1,7 @@
|
||||
.git
|
||||
.git/
|
||||
.gitignore
|
||||
_site
|
||||
.sass-cache
|
||||
.DS_Store
|
||||
_vendor
|
||||
11
cv.bryanroessler.com/Dockerfile
Normal file
11
cv.bryanroessler.com/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM ruby:2.7
|
||||
|
||||
WORKDIR /home/app
|
||||
|
||||
COPY Gemfile* ./
|
||||
|
||||
RUN bundle install
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD [ "bundle", "exec", "jekyll", "serve" ]
|
||||
Reference in New Issue
Block a user