From 34c8664c86fb47ea7694b6d6105db66382ae4b6d Mon Sep 17 00:00:00 2001 From: Radoslav Radev Date: Thu, 4 Apr 2024 18:56:12 +0200 Subject: [PATCH] updated dockerFile for upload --- Backend/Render/Dockerfile | 3 ++- Backend/Upload/Dockerfile | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Backend/Render/Dockerfile b/Backend/Render/Dockerfile index a57d1ae..175daf5 100644 --- a/Backend/Render/Dockerfile +++ b/Backend/Render/Dockerfile @@ -1,10 +1,11 @@ # Use Ubuntu as the base for the custom .NET environment FROM ubuntu:20.04 AS base -# Install .NET dependencies, NFS support, and other essential tools +# Install .NET dependencies, NFS support, wget, and other essential tools RUN apt-get update && apt-get install -y \ software-properties-common \ nfs-common \ + wget \ && rm -rf /var/lib/apt/lists/* # Install Microsoft package signing key and repository diff --git a/Backend/Upload/Dockerfile b/Backend/Upload/Dockerfile index a57d1ae..1e3d7b7 100644 --- a/Backend/Upload/Dockerfile +++ b/Backend/Upload/Dockerfile @@ -5,6 +5,7 @@ FROM ubuntu:20.04 AS base RUN apt-get update && apt-get install -y \ software-properties-common \ nfs-common \ + wget \ && rm -rf /var/lib/apt/lists/* # Install Microsoft package signing key and repository