Skip to content

Commit

Permalink
Install tensorflow in Docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
juhoinkinen committed Oct 28, 2019
1 parent f0014df commit ce49174
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update \
libvoikko1 \
voikko-fi \
&& pip install --no-cache-dir \
annif[voikko] \
voikko \
## fasttext:
&& apt-get install -y --no-install-recommends \
build-essential \
Expand Down Expand Up @@ -45,14 +45,17 @@ RUN apt-get update \
libvoikko1 \
voikko-fi \
&& pip install --no-cache-dir \
annif[voikko] \
voikko \
## Vowpal Wabbit
&& apt-get install -y --no-install-recommends \
libboost-program-options1.67.0 \
libboost-python1.67.0 \
libboost-system1.67.0 \
&& pip install --no-cache-dir \
vowpalwabbit==8.7.* \
## Neural Network Ensemble
&& pip install --no-cache-dir \
tensorflow==2.0.* \
## Clean up:
&& rm -rf /var/lib/apt/lists/* /usr/include/* \
&& rm -rf /root/.cache/pip*/*
Expand Down

0 comments on commit ce49174

Please sign in to comment.