sigyllly commited on
Commit
962e9e0
·
verified ·
1 Parent(s): 85aee49

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -12
Dockerfile CHANGED
@@ -4,31 +4,30 @@ FROM python:3.10-slim
4
  # Set the working directory
5
  WORKDIR /app
6
 
7
- # Install dependencies: wget, gnupg2, and unzip
8
  RUN apt-get update && apt-get install -y \
9
  wget \
10
  gnupg2 \
11
  apt-transport-https \
12
- && wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \
13
- && dpkg -i packages-microsoft-prod.deb \
 
14
  && apt-get update \
15
- && apt-get install -y dotnet-sdk-7.0 \
16
- && rm packages-microsoft-prod.deb \
17
  && apt-get clean \
18
  && rm -rf /var/lib/apt/lists/*
19
 
20
- # Set the .NET environment variables
21
- ENV DOTNET_ROOT=/usr/share/dotnet
22
- ENV PATH=$PATH:/usr/share/dotnet:/usr/share/dotnet/sdk/7.0.410
23
 
24
- # Check if 'dotnet --info' works and also check for 'csc'
25
- RUN dotnet --info && ls /usr/share/dotnet/sdk/7.0.410 && echo $PATH && which csc
26
 
27
  # Install Python pip and other dependencies
28
  RUN apt-get install -y python3-pip && pip3 install --no-cache-dir --upgrade -r /app/requirements.txt
29
 
30
- # Create necessary directories and set permissions
31
- RUN mkdir -p /app/uploads && chmod -R 777 /app/uploads
32
 
33
  # Copy the Flask app files
34
  COPY . .
 
4
  # Set the working directory
5
  WORKDIR /app
6
 
7
+ # Install dependencies: wget, gnupg2, unzip, and mono
8
  RUN apt-get update && apt-get install -y \
9
  wget \
10
  gnupg2 \
11
  apt-transport-https \
12
+ software-properties-common \
13
+ && wget https://download.mono-project.com/repo/xamarin.gpg -O /etc/apt/trusted.gpg.d/xamarin.asc \
14
+ && echo "deb https://download.mono-project.com/repo/debian stable-buster main" > /etc/apt/sources.list.d/mono-official-stable.list \
15
  && apt-get update \
16
+ && apt-get install -y mono-complete \
 
17
  && apt-get clean \
18
  && rm -rf /var/lib/apt/lists/*
19
 
20
+ # Set environment variables for Mono
21
+ ENV PATH=$PATH:/usr/bin/mono:/usr/lib/mono
 
22
 
23
+ # Verify installations and Mono compiler
24
+ RUN mono --version && mcs --version && echo $PATH
25
 
26
  # Install Python pip and other dependencies
27
  RUN apt-get install -y python3-pip && pip3 install --no-cache-dir --upgrade -r /app/requirements.txt
28
 
29
+ # Create necessary directories and set permissions for all folders
30
+ RUN mkdir -p /app/uploads /app/compile && chmod -R 777 /app
31
 
32
  # Copy the Flask app files
33
  COPY . .