-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from rpavlik/openxr-update
OpenXR updates
- Loading branch information
Showing
6 changed files
with
23 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,10 @@ | |
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
FROM debian:bookworm | ||
LABEL maintainer="Rylie Pavlik <[email protected]>" | ||
|
||
LABEL maintainer="Rylie Pavlik <[email protected]>" \ | ||
org.opencontainers.image.authors="Rylie Pavlik <[email protected]>" \ | ||
org.opencontainers.image.source=https://github.com/KhronosGroup/DockerContainers/blob/main/openxr-android.Dockerfile | ||
|
||
ENV LANG C.UTF-8 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,10 @@ | |
# Intended for CI use. | ||
|
||
FROM ubuntu:20.04 | ||
LABEL maintainer="Rylie Pavlik <[email protected]>" | ||
|
||
LABEL maintainer="Rylie Pavlik <[email protected]>" \ | ||
org.opencontainers.image.authors="Rylie Pavlik <[email protected]>" \ | ||
org.opencontainers.image.source=https://github.com/KhronosGroup/DockerContainers/blob/main/openxr-pregenerated-sdk.Dockerfile | ||
|
||
ENV LANG C.UTF-8 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,10 @@ | |
# Intended for CI or interactive use. | ||
|
||
FROM ubuntu:20.04 | ||
LABEL maintainer="Rylie Pavlik <[email protected]>" | ||
|
||
LABEL maintainer="Rylie Pavlik <[email protected]>" \ | ||
org.opencontainers.image.authors="Rylie Pavlik <[email protected]>" \ | ||
org.opencontainers.image.source=https://github.com/KhronosGroup/DockerContainers/blob/main/openxr-sdk.Dockerfile | ||
|
||
ENV LANG C.UTF-8 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ | |
# This is a Docker container for OpenXR specification builds | ||
|
||
FROM ruby:3.1-bookworm as builder | ||
LABEL maintainer="Rylie Pavlik <[email protected]>" | ||
|
||
# Basic spec build and check packages | ||
RUN env DEBIAN_FRONTEND=noninteractive apt-get update -qq && \ | ||
|
@@ -49,11 +48,10 @@ RUN env DEBIAN_FRONTEND=noninteractive apt-get update -qq && \ | |
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
# Basic gems | ||
RUN gem install rake asciidoctor coderay json-schema rghost | ||
RUN gem install rake asciidoctor coderay json-schema rghost rouge hexapdf | ||
# Newer versions break our index customizer, haven't figured out the fix yet. | ||
RUN gem install asciidoctor-pdf --version 1.6.2 | ||
# RUN MATHEMATICAL_SKIP_STRDUP=1 gem install asciidoctor-mathematical | ||
RUN gem install rouge | ||
|
||
# Basic pip packages | ||
RUN python3 -m pip install --break-system-packages --no-cache-dir codespell pypdf2 pdoc3 reuse jinja2-cli | ||
|
@@ -64,6 +62,10 @@ RUN python3 -m pip install --break-system-packages --no-cache-dir git+https://gi | |
# Second stage: start a simpler image that doesn't have the dev packages | ||
FROM ruby:3.1-bookworm | ||
|
||
LABEL maintainer="Rylie Pavlik <[email protected]>" \ | ||
org.opencontainers.image.authors="Rylie Pavlik <[email protected]>" \ | ||
org.opencontainers.image.source=https://github.com/KhronosGroup/DockerContainers/blob/main/openxr.Dockerfile | ||
|
||
# Copy locally-installed gems and python packages | ||
COPY --from=builder /usr/local/ /usr/local/ | ||
|
||
|