From cf34c1b9813ccf17996115972d61b411a438d515 Mon Sep 17 00:00:00 2001 From: karnem <mikhail.karnevskiy@desy.de> Date: Mon, 7 Aug 2023 19:41:18 +0200 Subject: [PATCH] Fix installation on envoy because repository is currently not available --- deploy/asapo_services_light/Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/deploy/asapo_services_light/Dockerfile b/deploy/asapo_services_light/Dockerfile index a010c4ce1..3eb40cd6f 100644 --- a/deploy/asapo_services_light/Dockerfile +++ b/deploy/asapo_services_light/Dockerfile @@ -32,10 +32,15 @@ RUN set -eux; \ apt-get update; \ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ influxdb \ - getenvoy-envoy \ + # getenvoy-envoy \ + wget \ mongodb-org; \ rm -rf /var/lib/apt/lists/* + +RUN wget https://github.com/envoyproxy/envoy/releases/download/v1.27.0/envoy-1.27.0-linux-x86_64 +RUN cp envoy-1.27.0-linux-x86_64 /usr/bin/envoy + RUN mkdir -p /var/log/supervisord/ COPY asapo-discovery /asapo-discovery -- GitLab