From 7bc081e99a51d039c4e283857e191e718f5b8c82 Mon Sep 17 00:00:00 2001 From: greatestfen <34179793+greatestfen@users.noreply.github.com> Date: Thu, 14 Jan 2021 12:10:21 +0300 Subject: [PATCH] Create Dockerfile --- action-a/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 action-a/Dockerfile diff --git a/action-a/Dockerfile b/action-a/Dockerfile new file mode 100644 index 0000000..44e85cb --- /dev/null +++ b/action-a/Dockerfile @@ -0,0 +1,5 @@ +FROM debian:9.5-slim + +ADD entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"]