Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -17,11 +17,11 @@ RUN apt-get update && \
|
|
17 |
|
18 |
# Copy the existing standalone_embed.sh script into the container
|
19 |
COPY standalone_embed.sh /standalone_embed.sh
|
20 |
-
RUN chmod +x
|
21 |
|
22 |
|
23 |
# Expose the default Milvus port
|
24 |
EXPOSE 19530
|
25 |
|
26 |
# Start Milvus on container startup
|
27 |
-
CMD ["bash", "-c", "
|
|
|
17 |
|
18 |
# Copy the existing standalone_embed.sh script into the container
|
19 |
COPY standalone_embed.sh /standalone_embed.sh
|
20 |
+
RUN chmod +x /standalone_embed.sh
|
21 |
|
22 |
|
23 |
# Expose the default Milvus port
|
24 |
EXPOSE 19530
|
25 |
|
26 |
# Start Milvus on container startup
|
27 |
+
CMD ["bash", "-c", "/standalone_embed.sh start && tail -f /dev/null"]
|