hello-world-action/Dockerfile
2024-05-09 21:03:35 -04:00

7 lines
122 B
Docker

# Container image that runs your code
FROM alpine:3.18
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]