Spaces:
Runtime error
Runtime error
# Use an official Ubuntu base image | |
FROM ubuntu:20.04 | |
# Set environment variables | |
ENV DEBIAN_FRONTEND=noninteractive | |
ENV TZ=Asia/Jakarta | |
# Install dependencies | |
RUN apt-get update && \ | |
apt-get install -y \ | |
curl \ | |
ca-certificates \ | |
gnupg \ | |
lsb-release \ | |
sudo && \ | |
rm -rf /var/lib/apt/lists/* | |
# Copy the existing standalone_embed.sh script into the container | |
COPY standalone_embed.sh /standalone_embed.sh | |
RUN chmod +x /standalone_embed.sh | |
# Expose the default Milvus port | |
EXPOSE 19530 | |
# Start Milvus on container startup | |
CMD ["bash", "-c", "/standalone_embed.sh start && tail -f /dev/null"] | |