sigyllly commited on
Commit
1de3b07
·
verified ·
1 Parent(s): 429993a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 NSIS
8
  RUN apt-get update && \
9
- apt-get install -y nsis wget && \
 
 
 
 
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