fix: [docker] default to pip and not local code

pull/40/head
Christophe Vandeplas 2020-01-11 22:07:38 +01:00
parent de4c22325c
commit e73e58bc18
1 changed files with 3 additions and 3 deletions

View File

@ -27,13 +27,13 @@ FROM python:3
RUN pip install PyMISP canari
# keep this for normal install
#RUN pip install MISP-maltego
RUN pip install MISP-maltego
# use this for install from your own local git repo
# - first run "python setup.py sdist" to build the package
# - change the version number below
COPY dist/MISP_maltego-1.4.1.tar.gz /usr/local/src/
RUN pip install /usr/local/src/MISP_maltego-1.4.1.tar.gz
#COPY dist/MISP_maltego-1.4.1.tar.gz /usr/local/src/
#RUN pip install /usr/local/src/MISP_maltego-1.4.1.tar.gz
ENV LC_ALL='C.UTF-8'
ENV LANG='C.UTF-8'