A private, free, open-source search engine built on a P2P network powered by mutual aid
https://wearebuildingthefuture.com
python
python3
javascript
html5
js
json
css3
flask
mongodb
machine-learning
search-engine
flask-application
lmdb
hnswlib
glove-vectors
glove-embeddings
glove
gensim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
379 B
11 lines
379 B
FROM ubuntu |
|
MAINTAINER Roberto Treviño <rtrevinnoc@wearebuildingthefuture.com> |
|
ENV DEBIAN_FRONTEND=noninteractive |
|
RUN apt-get update -y && apt-get upgrade -y |
|
RUN apt-get install -y pkg-config python3-icu libicu-dev wget unzip git python3 python3-pip python-is-python3 |
|
RUN ln -s /usr/bin/pip3 /usr/bin/pip |
|
WORKDIR opt |
|
RUN mkdir FUTURE |
|
WORKDIR FUTURE |
|
COPY . . |
|
RUN ./bootstrap.sh
|
|
|