Add Dockerfile and docker-compose.yml
This commit is contained in:
parent
8ef05119b4
commit
5e7cb414a8
|
@ -15,6 +15,3 @@ package-lock.json
|
||||||
assets/css/notpurged
|
assets/css/notpurged
|
||||||
purgecss.txt
|
purgecss.txt
|
||||||
_includes/dummy.html
|
_includes/dummy.html
|
||||||
Dockerfile
|
|
||||||
docker-compose.yml
|
|
||||||
.conf
|
|
||||||
|
|
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue