7 lines
139 B
Docker
7 lines
139 B
Docker
FROM python:3
|
|
#FROM python:3.11-slim
|
|
|
|
RUN pip install --no-cache-dir \
|
|
psycopg2 \
|
|
sentence_transformers \
|
|
&& /bin/true
|