Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -19,10 +19,10 @@ RUN apt-get update && apt-get install -y \
|
|
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.
|
23 |
|
24 |
# Check if 'dotnet --info' works and also check for 'csc'
|
25 |
-
RUN dotnet --info && ls /usr/share/dotnet/sdk/7.0.
|
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
|
|
|
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
|