From 4ce1f1f109f67773a3fb2f25701a405dccd7b285 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Thu, 9 Nov 2023 23:18:30 +0000 Subject: [PATCH] Adding sudo and base libraries to ubuntu. --- Dockerfile | 11 +++++++++++ README.md | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 36edef5..7f32918 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,17 @@ # base FROM ubuntu:22.04 +# Update Package +RUN apt-get update +# Install apt-utils +RUN apt-get install -y --no-install-recommends apt-utils +# Install Sudo +RUN apt-get -y install sudo +# Install Curl +RUN apt-get -y install curl +# Install VIM +RUN apt-get -y install vim + # set the github runner version ARG RUNNER_VERSION="2.311.0" diff --git a/README.md b/README.md index 03860bd..f5fb686 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Docker Github Action Runner -## Version 1.0.2 \ No newline at end of file +## Version 1.0.3 \ No newline at end of file