qdrant / Dockerfile
jonathanjordan21's picture
Update Dockerfile
eea80b7 verified
raw
history blame
910 Bytes
# 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 \
apt-transport-https && \
rm -rf /var/lib/apt/lists/*
# Install Docker in the container (to use Docker CLI if needed)
RUN apt-get update && \
apt-get install -y docker.io
# Copy the existing standalone_embed.sh script into the container
COPY standalone_embed.sh /standalone_embed.sh
RUN chmod +x /standalone_embed.sh
# Set appropriate permissions for Milvus configuration files
RUN touch embedEtcd.yaml user.yaml && \
chmod 666 embedEtcd.yaml user.yaml
# Expose the default Milvus port
EXPOSE 19530
# Start Milvus on container startup
CMD ["bash", "-c", "/standalone_embed.sh start && tail -f /dev/null"]