From e6abeb7b1660bd1135f712671d8a9d9f979bbb1f Mon Sep 17 00:00:00 2001 From: Raphael Hagen Date: Tue, 24 Sep 2024 11:13:15 -0600 Subject: [PATCH] remove sudo --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3981c0f..1a51155 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM apache/beam_python3.10_sdk:2.59.0 +USER ROOT # Install curl and rclone RUN apt-get update && apt-get install -y curl -RUN sudo -v && curl https://rclone.org/install.sh | sudo bash +RUN curl https://rclone.org/install.sh | bash