Skip to content

Commit dc94d2d

Browse files
committed
feature: docker: io: add latest git version
1 parent 1637bee commit dc94d2d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

docker/Dockerfile.io

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,19 @@ ENV DEBIAN_FRONTEND=noninteractive \
1818
NPM_CONFIG_CACHE=/tmp/.npm \
1919
PALABRA_DIR=/usr/local/share
2020

21-
ARG UBUNTU_DEPS="libatomic1 curl wget git net-tools iproute2"
21+
ARG UBUNTU_DEPS="libatomic1 curl wget git net-tools iproute2 software-properties-common"
2222
ARG RUST_DEPS="build-essential"
2323
ARG DEPS="pv gdb strace upx-ucl less ffmpeg net-tools netcat-openbsd mc iputils-ping vim bat fzf locales sudo command-not-found ncdu aptitude htop btop hexyl"
2424

2525
RUN apt-get update && \
2626
apt-get upgrade -y && \
2727
apt-get autoremove && \
2828
apt-get install -y ${UBUNTU_DEPS} ${RUST_DEPES} ${DEPS} && \
29+
echo "> Install git" && \
30+
add-apt-repository ppa:git-core/ppa -y && \
2931
echo "> Update command-not-found database. Run 'sudo apt update' to populate it." && \
3032
apt-get update && \
33+
apt-get upgrade -y && \
3134
apt-get autoremove && \
3235
apt-get clean && \
3336
echo "> create user" && \

0 commit comments

Comments
 (0)