Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +6 -2
Dockerfile
CHANGED
@@ -4,9 +4,13 @@ FROM python:3.10-slim
|
|
4 |
# Set the working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
# Install dependencies including
|
8 |
RUN apt-get update && \
|
9 |
-
apt-get install -y
|
|
|
|
|
|
|
|
|
10 |
rm -rf /var/lib/apt/lists/*
|
11 |
|
12 |
# Create necessary directories and set permissions
|
|
|
4 |
# Set the working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
# Install dependencies including .NET SDK and wget
|
8 |
RUN apt-get update && \
|
9 |
+
apt-get install -y wget gnupg ca-certificates && \
|
10 |
+
wget https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
|
11 |
+
dpkg -i packages-microsoft-prod.deb && \
|
12 |
+
apt-get update && \
|
13 |
+
apt-get install -y dotnet-sdk-6.0 && \
|
14 |
rm -rf /var/lib/apt/lists/*
|
15 |
|
16 |
# Create necessary directories and set permissions
|