proteinchat / Dockerfile
ThaisBarrosAlvim's picture
Upload 2 files
de88954 verified
raw
history blame contribute delete
232 Bytes
FROM qdrant/qdrant:latest
COPY protein_data.snapshot /protein_data.snapshot
EXPOSE 6333
USER root
RUN chmod 777 .
RUN ls /
CMD ["./qdrant", "--disable-telemetry","--force-snapshot","--snapshot","/protein_data.snapshot:protein_data"]