2 Commits
1.0.2 ... 1.0.4

2 changed files with 14 additions and 2 deletions

View File

@ -1,11 +1,23 @@
# base # base
FROM ubuntu:22.04 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 # set the github runner version
ARG RUNNER_VERSION="2.311.0" ARG RUNNER_VERSION="2.311.0"
# update the base packages and add a non-sudo user # update the base packages and add a non-sudo user
RUN apt-get update -y && apt-get upgrade -y && useradd -m docker RUN apt-get update -y && apt-get upgrade -y && useradd -m docker\
echo 'docker ALL=(ALL) NOPASSWD:ALL' | tee -a /etc/sudoers
# install python and the packages the your code depends on along with jq so we can parse JSON # install python and the packages the your code depends on along with jq so we can parse JSON
# add additional packages as necessary # add additional packages as necessary

View File

@ -1,3 +1,3 @@
# Docker Github Action Runner # Docker Github Action Runner
## Version 1.0.2 ## Version 1.0.4