Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +22 -29
Dockerfile
CHANGED
@@ -1,38 +1,31 @@
|
|
1 |
-
# Use
|
2 |
-
FROM
|
3 |
-
|
4 |
-
#
|
5 |
-
RUN dpkg --add-architecture i386 && \
|
6 |
-
apt-get update && \
|
7 |
-
apt-get install -y --no-install-recommends \
|
8 |
-
wine64 \
|
9 |
-
wine32 \
|
10 |
-
wget \
|
11 |
-
apt-utils && \
|
12 |
-
apt-get clean
|
13 |
-
|
14 |
-
# Create directories and set permissions
|
15 |
WORKDIR /app
|
16 |
-
RUN mkdir -p /app/uploads /app/compiled && chmod -R 777 /app/uploads /app/compiled
|
17 |
|
18 |
-
#
|
19 |
-
RUN
|
20 |
|
21 |
-
#
|
22 |
-
|
23 |
|
24 |
-
#
|
25 |
-
RUN
|
26 |
|
27 |
-
#
|
28 |
-
|
29 |
-
RUN pip install -r requirements.txt
|
30 |
|
31 |
-
#
|
32 |
-
|
33 |
|
34 |
-
#
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
-
#
|
38 |
CMD ["python", "main.py"]
|
|
|
1 |
+
# Use the .NET 6 SDK image
|
2 |
+
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build-env
|
3 |
+
|
4 |
+
# Set the working directory
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
WORKDIR /app
|
|
|
6 |
|
7 |
+
# Install necessary dependencies
|
8 |
+
RUN apt-get update && apt-get install -y wget
|
9 |
|
10 |
+
# Copy project files
|
11 |
+
COPY . ./
|
12 |
|
13 |
+
# Install Python dependencies (if needed)
|
14 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
15 |
|
16 |
+
# Expose the port Flask runs on
|
17 |
+
EXPOSE 7860
|
|
|
18 |
|
19 |
+
# Build and publish the C# project
|
20 |
+
RUN dotnet publish -c Release -o out
|
21 |
|
22 |
+
# Use a runtime image for the published output
|
23 |
+
FROM mcr.microsoft.com/dotnet/aspnet:6.0
|
24 |
+
|
25 |
+
WORKDIR /app
|
26 |
+
|
27 |
+
# Copy the published output from the build stage
|
28 |
+
COPY --from=build-env /app/out .
|
29 |
|
30 |
+
# Command to run the Flask app (Python and .NET can run simultaneously)
|
31 |
CMD ["python", "main.py"]
|