Spaces:
Paused
Paused
Update Docker
Browse files
Docker
CHANGED
@@ -1,24 +1,24 @@
|
|
1 |
# Use a lightweight Python image
|
2 |
FROM python:3.9-slim
|
3 |
|
|
|
|
|
|
|
|
|
4 |
# Set the working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
# Install MLflow
|
8 |
RUN pip install mlflow
|
9 |
|
10 |
-
#
|
11 |
-
EXPOSE 7860
|
12 |
-
|
13 |
COPY start_server.sh .
|
14 |
|
|
|
15 |
RUN chmod +x start_server.sh
|
16 |
|
17 |
-
#
|
18 |
-
|
19 |
-
|
20 |
-
# Set environment variables
|
21 |
-
ENV MLFLOW_TRACKING_URI=file:///data/mlruns
|
22 |
|
23 |
-
# Command to run the
|
24 |
CMD ["./start_server.sh"]
|
|
|
1 |
# Use a lightweight Python image
|
2 |
FROM python:3.9-slim
|
3 |
|
4 |
+
# Set environment variables
|
5 |
+
ENV PYTHONUNBUFFERED=1 \
|
6 |
+
SHELL=/bin/bash
|
7 |
+
|
8 |
# Set the working directory
|
9 |
WORKDIR /app
|
10 |
|
11 |
# Install MLflow
|
12 |
RUN pip install mlflow
|
13 |
|
14 |
+
# Copy the start_server.sh script into the container
|
|
|
|
|
15 |
COPY start_server.sh .
|
16 |
|
17 |
+
# Ensure the script is executable
|
18 |
RUN chmod +x start_server.sh
|
19 |
|
20 |
+
# Expose the default MLflow port
|
21 |
+
EXPOSE 7860
|
|
|
|
|
|
|
22 |
|
23 |
+
# Command to run the start_server.sh script
|
24 |
CMD ["./start_server.sh"]
|