summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/actions/docker-local-noargs/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/runner/testdata/actions/docker-local-noargs/Dockerfile')
-rw-r--r--pkg/runner/testdata/actions/docker-local-noargs/Dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/runner/testdata/actions/docker-local-noargs/Dockerfile b/pkg/runner/testdata/actions/docker-local-noargs/Dockerfile
new file mode 100644
index 0000000..b53bb33
--- /dev/null
+++ b/pkg/runner/testdata/actions/docker-local-noargs/Dockerfile
@@ -0,0 +1,8 @@
+# Container image that runs your code
+FROM node:12-buster-slim
+
+# 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"]