Skip to content

Commit

Permalink
updated dockerFile for upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Radoslav Radev committed Apr 4, 2024
1 parent 519a3d4 commit 34c8664
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Backend/Render/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions Backend/Upload/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 34c8664

Please sign in to comment.