summaryrefslogtreecommitdiff
path: root/.github/workflows/docker-debian/debian-dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/docker-debian/debian-dockerfile')
-rw-r--r--.github/workflows/docker-debian/debian-dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/docker-debian/debian-dockerfile b/.github/workflows/docker-debian/debian-dockerfile
new file mode 100644
index 00000000..147449a0
--- /dev/null
+++ b/.github/workflows/docker-debian/debian-dockerfile
@@ -0,0 +1,8 @@
1# Container image that runs your code
2FROM debian:buster
3
4# Copies your code file from your action repository to the filesystem path `/` of the container
5COPY entrypoint.sh /entrypoint.sh
6
7# Code file to execute when the docker container starts up (`entrypoint.sh`)
8ENTRYPOINT ["/entrypoint.sh"]