We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2324b97 commit af3ddf1Copy full SHA for af3ddf1
.dockerignore
@@ -0,0 +1,7 @@
1
+_site/
2
+.sass-cache/
3
+.jekyll-cache/
4
+.jekyll-metadata
5
+_data/snapshots.csv
6
+_data/sizes.yml
7
+vendor/
Dockerfile
+FROM ruby:3.4.3
+WORKDIR /build
+COPY Gemfile /build
+COPY Gemfile.lock /build
+RUN bundle install
+COPY . /build
+RUN bundle exec jekyll build
0 commit comments