diff --git a/.gitignore b/.gitignore index 04eae04..d2197bc 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,3 @@ package-lock.json assets/css/notpurged purgecss.txt _includes/dummy.html -Dockerfile -docker-compose.yml -.conf diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0a95939 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,37 @@ +FROM ruby:alpine3.18 + +RUN apk add imagemagick ruby-full g++ make npm +RUN apk add --update alpine-sdk + +COPY Gemfile . + +RUN bundle install --jobs 4 --retry 3 + +RUN npm install -g mermaid.cli + +RUN apk add gcompat + +RUN gem uninstall google-protobuf --force +RUN gem install google-protobuf --platform=ruby +RUN gem install ffi -v 1.16.1 +RUN gem uninstall ffi -v 1.16.2 +RUN gem install unicode-display_width -v 2.4.2 +RUN gem install activesupport -v 7.0.8 + +RUN mkdir -p /usr/app + +WORKDIR /usr/app + +COPY . . + +RUN bundle exec jekyll build + +RUN find . -maxdepth 1 ! -name '_site' -exec rm -rf {} \; + +RUN mv _site/* . + +RUN rm -R _site/ + +FROM cupcakearmy/static + +COPY --from=0 /usr/app /srv diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..cdc8d2e --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +version: '3' + +services: + jekyll: + image: slococo/personal-site-builder-static + restart: unless-stopped + ports: + - 9999:80 + volumes: + - ./_site:/srv:ro + - ./default.conf:/usr/local/nginx/conf/sites/default.conf