mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
This change allows Dockerfiles named Dockerfile.$(ARCH) and makes list-images list only supported architectures. Updates #2847 PiperOrigin-RevId: 336108293
20 lines
474 B
Docker
20 lines
474 B
Docker
FROM jekyll/jekyll:4.0.0
|
|
USER root
|
|
|
|
RUN gem install \
|
|
html-proofer:3.10.2 \
|
|
nokogiri:1.10.1 \
|
|
jekyll-autoprefixer:1.0.2 \
|
|
jekyll-inline-svg:1.1.4 \
|
|
jekyll-paginate:1.1.0 \
|
|
kramdown-parser-gfm:1.1.0 \
|
|
jekyll-relative-links:0.6.1 \
|
|
jekyll-feed:0.13.0 \
|
|
jekyll-sitemap:1.4.0
|
|
|
|
# checks.rb is used with html-proofer for presubmit checks.
|
|
COPY checks.rb /checks.rb
|
|
|
|
COPY build.sh /build.sh
|
|
CMD ["/build.sh"]
|