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