3 Commits
1.0.0 ... 1.0.3

2 changed files with 12 additions and 1 deletions

View File

@ -1,6 +1,17 @@
# 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"

View File

@ -1,3 +1,3 @@
# Docker Github Action Runner # Docker Github Action Runner
## Version 1.0.0 ## Version 1.0.3