mirror of
https://github.com/FranzDiebold/github-env-vars-action.git
synced 2025-04-20 23:47:04 -05:00
Switch to a Docker container action.
This commit is contained in:
parent
e050e21c8f
commit
dbbf375c45
7 changed files with 52 additions and 456 deletions
8
Dockerfile
Normal file
8
Dockerfile
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Container image that runs your code
|
||||
FROM alpine:3.10
|
||||
|
||||
# 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