website/Dockerfile
Daudix_UFO 3f6fc2d3cd
feat: Add build and instructions for it
Now I can finally preview the page locally! and without ruby, jekyll and
dependencies mess!!!
2023-06-27 01:49:31 +03:00

10 lines
348 B
Docker

# Create a github-pages container from a Ruby Alpine image
# Choose the ruby version according to https://pages.github.com/versions/
FROM ruby:2.7-alpine3.15
# Add Jekyll dependencies to Alpine
RUN apk update
RUN apk add --no-cache build-base gcc cmake git
# Install github-pages
RUN gem update bundler && gem install bundler webrick github-pages