From 096c8b380889ec782079790452ad64ed868850ea Mon Sep 17 00:00:00 2001 From: Kailai Wang Date: Wed, 22 May 2024 20:46:01 +0000 Subject: [PATCH] missing curl --- bitacross-worker/build.Dockerfile | 2 +- tee-worker/build.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitacross-worker/build.Dockerfile b/bitacross-worker/build.Dockerfile index d42789b16e..73b9c538c4 100644 --- a/bitacross-worker/build.Dockerfile +++ b/bitacross-worker/build.Dockerfile @@ -139,7 +139,7 @@ ENTRYPOINT ["/usr/local/bin/bitacross-worker"] FROM ubuntu:22.04 AS worker-release LABEL maintainer="Trust Computing GmbH " -RUN apt update && apt install -y libssl-dev iproute2 protobuf-compiler +RUN apt update && apt install -y libssl-dev iproute2 curl protobuf-compiler # Adding default user litentry with uid 1000 ARG UID=1000 diff --git a/tee-worker/build.Dockerfile b/tee-worker/build.Dockerfile index 619c0fe38b..dca1ac0bda 100644 --- a/tee-worker/build.Dockerfile +++ b/tee-worker/build.Dockerfile @@ -144,7 +144,7 @@ ENTRYPOINT ["/usr/local/bin/litentry-worker"] FROM ubuntu:22.04 AS worker-release LABEL maintainer="Trust Computing GmbH " -RUN apt update && apt install -y libssl-dev iproute2 protobuf-compiler +RUN apt update && apt install -y libssl-dev iproute2 curl protobuf-compiler # Adding default user litentry with uid 1000 ARG UID=1000