sigyllly commited on
Commit
25594f0
·
verified ·
1 Parent(s): a324286

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -8
Dockerfile CHANGED
@@ -4,12 +4,15 @@ FROM python:3.10-slim
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 \
@@ -20,18 +23,18 @@ RUN apt-get update && apt-get install -y \
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 . .
34
 
 
 
 
35
  # Expose the port the app runs on
36
  EXPOSE 7860
37
 
 
4
  # Set the working directory
5
  WORKDIR /app
6
 
7
+ # Install necessary dependencies including Mono, wget, and Python tools
8
  RUN apt-get update && apt-get install -y \
9
  wget \
10
  gnupg2 \
11
  apt-transport-https \
12
  software-properties-common \
13
+ python3-pip \
14
+ python3-setuptools \
15
+ python3-venv \
16
  && wget https://download.mono-project.com/repo/xamarin.gpg -O /etc/apt/trusted.gpg.d/xamarin.asc \
17
  && echo "deb https://download.mono-project.com/repo/debian stable-buster main" > /etc/apt/sources.list.d/mono-official-stable.list \
18
  && apt-get update \
 
23
  # Set environment variables for Mono
24
  ENV PATH=$PATH:/usr/bin/mono:/usr/lib/mono
25
 
26
+ # Verify Mono installation and its compiler
27
+ RUN mono --version && mcs --version
28
 
29
+ # Create necessary directories and set full permissions
 
 
 
30
  RUN mkdir -p /app/uploads /app/compile && chmod -R 777 /app
31
 
32
+ # Copy application files
33
  COPY . .
34
 
35
+ # Install Python dependencies
36
+ RUN pip3 install --no-cache-dir --upgrade -r /app/requirements.txt
37
+
38
  # Expose the port the app runs on
39
  EXPOSE 7860
40