From cabbd3d46220680c3d95212f6a41ef96a5eb3f31 Mon Sep 17 00:00:00 2001 From: Abhas Bhattacharya Date: Sun, 7 Jun 2020 22:06:53 +0530 Subject: [PATCH] Add dockerfile to create env --- 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"]