mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-06 23:57:48 +00:00
[NO NEW TESTS NEEDED] This commit describes how to run the quay.io/podman/hello image. It also contains the files necessary to build that image localy, and a README.md explaining the image and how to build it. Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
8 lines
231 B
Docker
8 lines
231 B
Docker
FROM registry.access.redhat.com/ubi8-micro:latest
|
|
|
|
LABEL maintainer="Podman Maintainers"
|
|
LABEL artist="Máirín Ní Ḋuḃṫaiġ, Twitter:@mairin"
|
|
WORKDIR /tmp
|
|
|
|
COPY podman_hello_world.bash .
|
|
ENTRYPOINT ./podman_hello_world.bash
|