Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set -e
./build-one.sh vulkan-docs-base 202206 "$@"
./build-one.sh vulkan-docs 202206 "$@"
./build-one.sh rust 202312 "$@"
./build-one.sh openxr 20240924 "$@"
./build-one.sh openxr 20251023 "$@"
./build-one.sh openxr-sdk 20250603 "$@"
./build-one.sh openxr-pregenerated-sdk 20240924 "$@"
./build-one.sh openxr-android 20250121 "$@"
Expand Down
13 changes: 10 additions & 3 deletions openxr.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@

FROM ruby:3.1-bookworm as builder

# Basic spec build and check packages
# Build environment for ruby and python packages
# You probably want to add packages to the **second** list.
RUN env DEBIAN_FRONTEND=noninteractive apt-get update -qq && \
env DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y -qq \
bison \
Expand All @@ -44,9 +45,11 @@ RUN env DEBIAN_FRONTEND=noninteractive apt-get update -qq && \
python3-requests \
python3-setuptools \
python3-wheel \
wget && \
wget \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# Basic gems
RUN gem install rake asciidoctor coderay json-schema rghost rouge hexapdf
# Newer versions break our index customizer, haven't figured out the fix yet.
Expand Down Expand Up @@ -82,7 +85,9 @@ RUN env DEBIAN_FRONTEND=noninteractive apt-get update -qq && \
jing \
libpango1.0-0 \
libxml2-utils \
optipng \
pdftk \
pngquant \
poppler-utils \
python3 \
python3-attr \
Expand All @@ -96,7 +101,9 @@ RUN env DEBIAN_FRONTEND=noninteractive apt-get update -qq && \
python3-venv \
trang \
wget \
xmlstarlet && \
xmlstarlet \
zopfli \
&& \
apt-get clean

# Add the optional entrypoint to the image
Expand Down
Loading