Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -29,5 +29,8 @@ COPY . .
|
|
29 |
# Expose the port the app runs on
|
30 |
EXPOSE 7860
|
31 |
|
|
|
|
|
|
|
32 |
# Command to run the Flask app
|
33 |
CMD ["python3", "main.py"]
|
|
|
29 |
# Expose the port the app runs on
|
30 |
EXPOSE 7860
|
31 |
|
32 |
+
# Set the PATH for the .NET tools
|
33 |
+
ENV PATH="${PATH}:/usr/bin/dotnet"
|
34 |
+
|
35 |
# Command to run the Flask app
|
36 |
CMD ["python3", "main.py"]
|