diff --git a/hello-world-docker-action/Dockerfile b/hello-world-docker-action/Dockerfile new file mode 100644 index 0000000..1fe9ca1 --- /dev/null +++ b/hello-world-docker-action/Dockerfile @@ -0,0 +1,7 @@ +FROM alpine:3.10 + +COPY entrypoint.sh /entrypoint.sh + +RUN chmod +x entrypoint.sh + +ENTRYPOINT ["/entrypoint.sh"]