Spaces:
Sleeping
Sleeping
# 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"] |