7 lines
289 B
Docker
7 lines
289 B
Docker
|
|
FROM alpine:3.19
|
||
|
|
LABEL org.opencontainers.image.title="stack-test-demo"
|
||
|
|
LABEL org.opencontainers.image.version="1.0.0"
|
||
|
|
LABEL org.opencontainers.image.description="Demo image for Stack.Gallery Registry e2e tests"
|
||
|
|
RUN echo "Stack.Gallery Demo Image" > /README.txt
|
||
|
|
CMD ["cat", "/README.txt"]
|