Skip to content
Snippets Groups Projects
Commit 54929939 authored by Sacha-Élie Ayoun's avatar Sacha-Élie Ayoun
Browse files

add dockerfile for local development

parent 0dd5bb7c
No related branches found
No related tags found
No related merge requests found
FROM ruby:2.6
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1
RUN gem install bundler:1.16.6
WORKDIR /usr/src/app
COPY Gemfile Gemfile.lock ./
RUN bundle install
COPY . .
RUN bundle exec rake init
EXPOSE 4000
CMD ["bundle", "exec", "jekyll", "serve", "--host", "0.0.0.0"]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment