hello-world-action/Dockerfile

8 lines
122 B
Docker
Raw Permalink Normal View History

2024-05-09 20:28:21 -04:00
# Container image that runs your code
2024-05-09 21:03:35 -04:00
FROM alpine:3.18
2024-05-09 20:28:21 -04:00
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]