mirror of
https://github.com/rocky-linux/sig-cloud-instance-images.git
synced 2024-10-31 18:31:23 +00:00
15 lines
588 B
Docker
15 lines
588 B
Docker
FROM scratch
|
|
ADD rocky-8.4-docker-x86_64.tar.xz /
|
|
|
|
LABEL org.label-schema.schema-version="1.0" \
|
|
org.label-schema.name="Rocky Linux Base Image" \
|
|
org.label-schema.vendor="Rocky Enterprise Software Foundation" \
|
|
org.label-schema.license="BSD-3-Clause" \
|
|
org.label-schema.build-date="20210620" \
|
|
org.opencontainers.image.title="Rocky Linux Base Image" \
|
|
org.opencontainers.image.vendor="Rocky Enterprise Software Foundation" \
|
|
org.opencontainers.image.licenses="BSD-3-Clause" \
|
|
org.opencontainers.image.created="2021-06-20 00:00:00+01:00"
|
|
|
|
CMD ["/bin/bash"]
|