Skip to content

Commit

Permalink
feat: Add apt-get install wget
Browse files Browse the repository at this point in the history
  • Loading branch information
AmirhBrt committed Feb 15, 2024
1 parent 14d3fa5 commit c739b96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions broker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM python:3.10-slim

WORKDIR /app

RUN apt-get update && apt-get install wget -y
RUN wget https://github.com/prometheus/node_exporter/releases/download/v1.3.1/node_exporter-1.3.1.linux-amd64.tar.gz
RUN tar xvf node_exporter-1.3.1.linux-amd64.tar.gz
RUN cd node_exporter-1.3.1.linux-amd64
Expand Down
1 change: 1 addition & 0 deletions gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM python:3.10-slim

WORKDIR /app

RUN apt-get update && apt-get install wget -y
RUN wget https://github.com/prometheus/node_exporter/releases/download/v1.3.1/node_exporter-1.3.1.linux-amd64.tar.gz
RUN tar xvf node_exporter-1.3.1.linux-amd64.tar.gz
RUN cd node_exporter-1.3.1.linux-amd64
Expand Down
1 change: 1 addition & 0 deletions zookeeper/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM python:3.10-slim

WORKDIR /app

RUN apt-get update && apt-get install wget -y
RUN wget https://github.com/prometheus/node_exporter/releases/download/v1.3.1/node_exporter-1.3.1.linux-amd64.tar.gz
RUN tar xvf node_exporter-1.3.1.linux-amd64.tar.gz
RUN cd node_exporter-1.3.1.linux-amd64
Expand Down

0 comments on commit c739b96

Please sign in to comment.