14 lines
386 B
Docker
14 lines
386 B
Docker
FROM postgres:14
|
|
|
|
RUN apt-get update
|
|
RUN apt-get -y install python3 \
|
|
python3-pip \
|
|
postgresql-plpython3-14
|
|
|
|
RUN python3 -m pip install sentence-transformers
|
|
|
|
ADD ./init.sql /docker-entrypoint-initdb.d/init.sql
|
|
RUN chown postgres:postgres /docker-entrypoint-initdb.d/init.sql
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
EXPOSE 5432
|
|
CMD ["postgres"] |