forked from jina-ai/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
27 lines (22 loc) · 924 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM jinaai/jina:1.0.5
# setup the workspace
COPY . /workspace
WORKDIR /workspace
RUN apt-get update && apt-get install --no-install-recommends -y git curl libmagic1 wget tar \
&& pip uninstall -y jina && pip install -r requirements.txt
RUN bash get_data.sh && bash download.sh && python app.py index
ENTRYPOINT ["python", "app.py", "search"]
LABEL author="Jina AI Dev-Team ([email protected])"
LABEL type="app"
LABEL kind="example"
LABEL avatar="None"
LABEL description="Jina App to search Pokemons using Google Big Transfer Model as Encoder"
LABEL documentation="https://github.com/jina-ai/examples/tree/master/pokedex-with-bit"
LABEL keywords="[pokemon, cv, Google Big Transfe]"
LABEL license="apache-2.0"
LABEL name="pokedexwithbit"
LABEL platform="linux/amd64"
LABEL update="None"
LABEL url="https://github.com/jina-ai/examples/tree/master/pokedex-with-bit"
LABEL vendor="Jina AI Limited"
LABEL version="0.0.1"