Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|
8 |
RUN apt-get update && apt-get install -y \
|
9 |
wget \
|
10 |
gnupg2 \
|
11 |
apt-transport-https \
|
12 |
-
|
13 |
-
&&
|
|
|
14 |
&& apt-get update \
|
15 |
-
&& apt-get install -y
|
16 |
-
&& rm packages-microsoft-prod.deb \
|
17 |
&& apt-get clean \
|
18 |
&& rm -rf /var/lib/apt/lists/*
|
19 |
|
20 |
-
# Set
|
21 |
-
ENV
|
22 |
-
ENV PATH=$PATH:/usr/share/dotnet:/usr/share/dotnet/sdk/7.0.410
|
23 |
|
24 |
-
#
|
25 |
-
RUN
|
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
|
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 . .
|