Adding sudo and base libraries to ubuntu.

This commit is contained in:
Alejandro Lembke Barrientos 2023-11-09 23:18:30 +00:00
parent c75213effb
commit 4ce1f1f109
2 changed files with 12 additions and 1 deletions

View File

@ -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"

View File

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