From e73e58bc184b025d49663dfea889c79207e444f0 Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Sat, 11 Jan 2020 22:07:38 +0100 Subject: [PATCH] fix: [docker] default to pip and not local code --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 67941e2..b4080c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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'