sebastianalgharaballi's picture
Upload Docker
fb19dc4 verified
raw
history blame
204 Bytes
FROM python:3.10-slim
WORKDIR /embeddings
# Install dependencies
RUN pip install sentence-transformers \
numpy \
transformers \
torch
# Copy your code
COPY encoder.py .
COPY embeddings.py .