CoolFace
Apppublic

nathanjc/splade-v3-vector

sourceHugging Facemitupdated 2y agoView on Hugging Face
0likes
Dockerfile15 linesDownload Raw Back to root
1FROM  --platform=linux/amd64 python:3.8-slim2 3WORKDIR /splade-v34 5COPY requirements.txt .6 7RUN pip install -r requirements.txt8 9COPY ./app ./app10 11RUN ls -la ./app12 13expose 786014 15CMD ["python", "./app/main.py"]