sigyllly commited on
Commit
801b804
·
verified ·
1 Parent(s): 12381d0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -16
Dockerfile CHANGED
@@ -4,15 +4,16 @@ FROM python:3.10-slim
4
  # Set the working directory
5
  WORKDIR /app
6
 
7
- # Install dependencies: Mono, wget, and Python pip
8
  RUN apt-get update && apt-get install -y \
9
  wget \
10
  apt-transport-https \
11
- && apt-get install -y gnupg2 \
12
- && echo "deb https://download.mono-project.com/repo/debian stable main" >> /etc/apt/sources.list.d/mono-official-stable.list \
13
- && wget -qO - https://download.mono-project.com/repo/xamarin.gpg | apt-key add - \
14
- && apt-get update && apt-get install -y mono-complete \
15
- && apt-get install -y python3-pip \
 
16
  && rm -rf /var/lib/apt/lists/*
17
 
18
  # Create a non-root user and set it as the user for the rest of the image
@@ -25,16 +26,7 @@ RUN chown -R appuser:appuser /app
25
  USER appuser
26
 
27
  # Create necessary directories and set permissions
28
- RUN mkdir -p /app/uploads /home/appuser/.mono && \
29
- chmod -R 777 /app/uploads /home/appuser/.mono
30
-
31
- # Set the MONO_HOME environment variable
32
- ENV MONO_HOME="/home/appuser/.mono"
33
- # Add the Mono tools directory to PATH
34
- ENV PATH="${PATH}:${MONO_HOME}/bin:/usr/bin"
35
-
36
- # Ensure mcs is in the PATH
37
- RUN echo $PATH && which mcs
38
 
39
  # Copy the requirements file with the correct owner
40
  COPY --chown=appuser:appuser ./requirements.txt /app/requirements.txt
 
4
  # Set the working directory
5
  WORKDIR /app
6
 
7
+ # Install dependencies: .NET SDK (Roslyn included), wget, and Python pip
8
  RUN apt-get update && apt-get install -y \
9
  wget \
10
  apt-transport-https \
11
+ gnupg2 \
12
+ && wget https://packages.microsoft.com/config/debian/$(lsb_release -rs)/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \
13
+ && dpkg -i packages-microsoft-prod.deb \
14
+ && apt-get update && apt-get install -y \
15
+ dotnet-sdk-7.0 \
16
+ python3-pip \
17
  && rm -rf /var/lib/apt/lists/*
18
 
19
  # Create a non-root user and set it as the user for the rest of the image
 
26
  USER appuser
27
 
28
  # Create necessary directories and set permissions
29
+ RUN mkdir -p /app/uploads && chmod -R 777 /app/uploads
 
 
 
 
 
 
 
 
 
30
 
31
  # Copy the requirements file with the correct owner
32
  COPY --chown=appuser:appuser ./requirements.txt /app/requirements.txt