qdrant_test / Dockerfile
davanstrien's picture
davanstrien HF Staff
Create Dockerfile
e95e8a7 verified
raw
history blame
348 Bytes
# Use an official Qdrant image as a parent image
FROM qdrant/qdrant:latest
# Set the user to avoid permission issues
USER 1000
# Expose the Qdrant port
EXPOSE 6333
# The entrypoint is already set in the base image, so we don't need to set it again
# We'll just override the CMD to use our custom config if needed
CMD ["./config/production.yaml"]