-
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.
- Loading branch information
Showing
4 changed files
with
16 additions
and
4 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
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 && \ | ||
|
@@ -63,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/ | ||
|
||
|