Skip to content

Commit

Permalink
change curl from wget
Browse files Browse the repository at this point in the history
  • Loading branch information
takara9 committed Jun 1, 2024
1 parent 52c53f8 commit e02c89e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
FROM ubuntu:jammy-20240427 as build

RUN apt-get update -y && apt-get install -y --no-install-recommends gcc=4:11.2.0-1ubuntu1 build-essential=12.9ubuntu3 wget=1.21.2-2ubuntu1
RUN apt-get update -y && apt-get install -y --no-install-recommends gcc=4:11.2.0-1ubuntu1 build-essential=12.9ubuntu3 curl=7.81.0-1ubuntu1.16 ca-certificates=20230311ubuntu0.22.04.1
WORKDIR /app
RUN wget -q https://github.com/ColinIanKing/stress-ng/archive/refs/tags/V0.17.08.tar.gz && \
tar xavf V0.17.08.tar.gz && \
cd stress-ng-0.17.08 && \
make && make install
RUN curl -OL https://github.com/ColinIanKing/stress-ng/archive/refs/tags/V0.17.08.tar.gz
RUN tar xavf V0.17.08.tar.gz
RUN cd stress-ng-0.17.08 && make && make install


FROM ubuntu:jammy-20240427
Expand Down

0 comments on commit e02c89e

Please sign in to comment.