From 7062c0ee892c7463a9d1bc369770d975d8380b32 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Sun, 12 Nov 2023 00:01:09 +0000 Subject: [PATCH] Adding Docker Compose to runner. --- Dockerfile | 6 ++++++ README.md | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6be94c8..d4645d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,12 @@ VOLUME /var/lib/docker #RUN sudo usermod -aG docker docker #Finishing Installing Docker +#Install Docker Compose +RUN sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose +RUN sudo chmod +x /usr/local/bin/docker-compose +RUN docker-compose --version +#Finishing Installing Docker Compose + # install python and the packages the your code depends on along with jq so we can parse JSON # add additional packages as necessary RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ diff --git a/README.md b/README.md index 0bd025d..a7ef19e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Docker Github Action Runner -## Version 1.0.14 \ No newline at end of file +## Version 1.0.15 \ No newline at end of file