Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +16 -24
Dockerfile
CHANGED
@@ -4,47 +4,39 @@ FROM python:3.10-slim
|
|
4 |
# Set the working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
# Install dependencies: wget, unzip, and Python pip
|
8 |
RUN apt-get update && apt-get install -y \
|
9 |
wget \
|
10 |
apt-transport-https \
|
11 |
gnupg2 \
|
12 |
-
|
13 |
-
&&
|
14 |
-
|
15 |
-
# Install the .NET SDK (adjust version as necessary)
|
16 |
-
RUN wget https://packages.microsoft.com/config/debian/$(lsb_release -rs)/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \
|
17 |
&& dpkg -i packages-microsoft-prod.deb \
|
18 |
-
&& apt-get update \
|
19 |
-
|
|
|
20 |
&& rm packages-microsoft-prod.deb \
|
21 |
&& apt-get clean \
|
22 |
&& rm -rf /var/lib/apt/lists/*
|
23 |
|
24 |
-
#
|
25 |
-
RUN
|
26 |
-
|
27 |
-
# Ensure the /app directory is owned by the non-root user
|
28 |
-
RUN chown -R appuser:appuser /app
|
29 |
-
|
30 |
-
# Switch to the non-root user
|
31 |
-
USER appuser
|
32 |
|
33 |
-
#
|
34 |
-
|
35 |
-
|
36 |
|
37 |
-
#
|
38 |
-
|
39 |
|
40 |
-
# Copy the requirements file
|
41 |
-
COPY
|
42 |
|
43 |
# Install Python dependencies
|
44 |
RUN pip3 install --no-cache-dir --upgrade -r /app/requirements.txt
|
45 |
|
46 |
# Copy the Flask app files
|
47 |
-
COPY
|
48 |
|
49 |
# Expose the port the app runs on
|
50 |
EXPOSE 7860
|
|
|
4 |
# Set the working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
# Install dependencies: .NET SDK, wget, unzip, and Python pip
|
8 |
RUN apt-get update && apt-get install -y \
|
9 |
wget \
|
10 |
apt-transport-https \
|
11 |
gnupg2 \
|
12 |
+
unzip \
|
13 |
+
&& wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \
|
|
|
|
|
|
|
14 |
&& dpkg -i packages-microsoft-prod.deb \
|
15 |
+
&& apt-get update && apt-get install -y \
|
16 |
+
dotnet-sdk-7.0 \
|
17 |
+
python3-pip \
|
18 |
&& rm packages-microsoft-prod.deb \
|
19 |
&& apt-get clean \
|
20 |
&& rm -rf /var/lib/apt/lists/*
|
21 |
|
22 |
+
# Ensure the /app directory is writable
|
23 |
+
RUN mkdir -p /app/uploads && chmod -R 777 /app/uploads
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
+
# Set the DOTNET_ROOT environment variable
|
26 |
+
ENV DOTNET_ROOT="/usr/share/dotnet"
|
27 |
+
ENV PATH="$PATH:$DOTNET_ROOT"
|
28 |
|
29 |
+
# Ensure csc is in the PATH
|
30 |
+
RUN echo $PATH && which csc
|
31 |
|
32 |
+
# Copy the requirements file
|
33 |
+
COPY ./requirements.txt /app/requirements.txt
|
34 |
|
35 |
# Install Python dependencies
|
36 |
RUN pip3 install --no-cache-dir --upgrade -r /app/requirements.txt
|
37 |
|
38 |
# Copy the Flask app files
|
39 |
+
COPY . .
|
40 |
|
41 |
# Expose the port the app runs on
|
42 |
EXPOSE 7860
|