parent
6cb1aa7419
commit
120d4f2a9e
4 changed files with 39 additions and 4 deletions
9
actions/hello/Dockerfile
Normal file
9
actions/hello/Dockerfile
Normal file
|
@ -0,0 +1,9 @@
|
|||
# Container image that runs your code
|
||||
FROM alpine:edge
|
||||
|
||||
# Copies your code file from your action repository to the filesystem path `/` of the container
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
|
||||
# Code file to execute when the docker container starts up (`entrypoint.sh`)
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue