root 3 years ago
parent
commit
5c4bdd015e
  1. 14
      Dockerfile

14
Dockerfile

@ -33,14 +33,18 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN dpkg-reconfigure -f noninteractive tzdata RUN dpkg-reconfigure -f noninteractive tzdata
# Set locale and install packages # Set locale and install packages
ADD containercontent /
RUN pip3 install --upgrade pip RUN pip3 install --upgrade pip
RUN pip3 install django==3.1.5 RUN pip3 install django==3.2.8
RUN pip install tensorflow-cpu==2.6.0 #RUN pip3 install --ignore-installed --upgrade /opt/tensorflow-2.6.2-cp38-cp38-linux_x86_64.whl
RUN pip install tflearn==0.5.0 #RUN pip install tensorflow-cpu==2.6.0
RUN pip3 install --ignore-installed --upgrade /opt/tensorflow-2.7.0-cp38-cp38-linux_x86_64.whl
RUN pip3 install python-Levenshtein
RUN pip3 install tflearn==0.5.0
RUN pip3 install nltk RUN pip3 install nltk
RUN pip3 install pyspellchecker RUN pip3 install pyspellchecker
RUN pip3 install pysummarize RUN pip3 install pysummarize
@ -51,4 +55,6 @@ RUN pip3 install geotext
RUN pip3 install HanTa RUN pip3 install HanTa
RUN pip3 install beautifulsoup4 RUN pip3 install beautifulsoup4
WORKDIR "/" WORKDIR "/"
RUN ls -la RUN pip3 list

Loading…
Cancel
Save