Skip to content

Commit c6b8910

Browse files
Update Dockerfile (#1565)
* Update Dockerfile * GRPC_HEALTH_PROBE_VERSION as ENV in Dockerfile for Dependabot bump
1 parent 9d194c3 commit c6b8910

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

src/adservice/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ ENTRYPOINT ["/app/build/install/hipstershop/bin/AdService"]
4444
FROM without-grpc-health-probe-bin
4545

4646
# renovate: datasource=github-releases depName=grpc-ecosystem/grpc-health-probe
47-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.14 && \
48-
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
47+
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14
48+
RUN wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
4949
chmod +x /bin/grpc_health_probe

src/cartservice/src/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ENTRYPOINT ["/app/cartservice"]
3434
FROM without-grpc-health-probe-bin
3535
USER root
3636
# renovate: datasource=github-releases depName=grpc-ecosystem/grpc-health-probe
37-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.14 && \
38-
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
37+
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14
38+
RUN wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
3939
chmod +x /bin/grpc_health_probe
4040
USER 1000

src/cartservice/src/Dockerfile.debug

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ FROM mcr.microsoft.com/dotnet/aspnet:7.0@sha256:59785b036995c76a23391b39cf79be89
2727
RUN apt-get update \
2828
&& apt-get install -y unzip procps wget
2929
# renovate: datasource=github-releases depName=grpc-ecosystem/grpc-health-probe
30-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.14 && \
31-
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
30+
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14
31+
RUN wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
3232
chmod +x /bin/grpc_health_probe
3333
WORKDIR /app
3434
COPY --from=publish /out .

src/checkoutservice/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ ENTRYPOINT ["/src/checkoutservice"]
4343

4444
FROM without-grpc-health-probe-bin
4545
# renovate: datasource=github-releases depName=grpc-ecosystem/grpc-health-probe
46-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.14 && \
47-
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
46+
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14
47+
RUN wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
4848
chmod +x /bin/grpc_health_probe

src/currencyservice/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ ENTRYPOINT [ "node", "server.js" ]
4444
FROM without-grpc-health-probe-bin
4545

4646
# renovate: datasource=github-releases depName=grpc-ecosystem/grpc-health-probe
47-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.14 && \
48-
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
47+
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14
48+
RUN wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
4949
chmod +x /bin/grpc_health_probe

src/emailservice/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ RUN apt-get -qq update \
2323

2424
# Download the grpc health probe
2525
# renovate: datasource=github-releases depName=grpc-ecosystem/grpc-health-probe
26-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.14 && \
27-
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
26+
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14
27+
RUN wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
2828
chmod +x /bin/grpc_health_probe
2929

3030
# get packages

src/paymentservice/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ ENTRYPOINT [ "node", "index.js" ]
4444
FROM without-grpc-health-probe-bin
4545

4646
# renovate: datasource=github-releases depName=grpc-ecosystem/grpc-health-probe
47-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.14 && \
48-
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
47+
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14
48+
RUN wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
4949
chmod +x /bin/grpc_health_probe

src/productcatalogservice/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ ENTRYPOINT ["/src/server"]
4343

4444
FROM without-grpc-health-probe-bin
4545
# renovate: datasource=github-releases depName=grpc-ecosystem/grpc-health-probe
46-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.14 && \
47-
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
46+
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14
47+
RUN wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
4848
chmod +x /bin/grpc_health_probe

src/recommendationservice/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ RUN apt-get -qq update \
2323

2424
# download the grpc health probe
2525
# renovate: datasource=github-releases depName=grpc-ecosystem/grpc-health-probe
26-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.14 && \
27-
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
26+
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14
27+
RUN wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
2828
chmod +x /bin/grpc_health_probe
2929

3030
# get packages

src/shippingservice/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ ENTRYPOINT ["/src/shippingservice"]
4343

4444
FROM without-grpc-health-probe-bin
4545
# renovate: datasource=github-releases depName=grpc-ecosystem/grpc-health-probe
46-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.14 && \
47-
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
46+
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.14
47+
RUN wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 && \
4848
chmod +x /bin/grpc_health_probe

0 commit comments

Comments
 (0)