docker-images/hello-world/Dockerfile
ThetaDev 8c4dc7cdff
Some checks failed
Build and push NGINX image / build (push) Failing after 1m5s
add hello-world image to test docker buildx
2025-07-20 11:29:27 +02:00

5 lines
96 B
Docker

FROM alpine
RUN echo "echo 'Hello World!'" > /entrypoint.sh
CMD ["/bin/sh", "/entrypoint.sh"]