Skip to content

Commit

Permalink
update apt cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
yudong2015 committed Apr 22, 2024
1 parent 2c84d02 commit 7f17936
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 12 deletions.
26 changes: 20 additions & 6 deletions base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,26 @@ FROM ubuntu:jammy-20240405

# utils
RUN apt-get update && \
apt-get install -y zip \
build-essential \
curl \
wget \
git && \
apt-get clean
apt-get install -y zip \
build-essential \
curl \
wget \
libncurses5-dev \
openssl \
libssl-dev \
build-essential \
pkg-config \
libc6-dev \
bison \
flex \
libelf-dev \
zlib1g-dev \
minizip \
libidn11-dev \
qttools5-dev \
liblz4-tool
git && \
apt-get clean

# USER jenkins
WORKDIR /home/jenkins
Expand Down
28 changes: 22 additions & 6 deletions base/podman/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,28 @@ FROM ubuntu:jammy-20240405
# utils
RUN apt-get update && \
apt-get install -y zip \
build-essential \
curl \
wget \
git \
podman && \
apt-get clean
RUN apt-get update && \
apt-get install -y zip \
build-essential \
curl \
wget \
libncurses5-dev \
openssl \
libssl-dev \
build-essential \
pkg-config \
libc6-dev \
bison \
flex \
libelf-dev \
zlib1g-dev \
minizip \
libidn11-dev \
qttools5-dev \
liblz4-tool
git && \
podman && \
apt-get clean

# USER jenkins
WORKDIR /home/jenkins
Expand Down

0 comments on commit 7f17936

Please sign in to comment.