From 66e443376a608156ce7e74f9959b71a0ca75380d Mon Sep 17 00:00:00 2001 From: Matt <36310667+NotoriousRebel@users.noreply.github.com> Date: Sun, 6 Jan 2019 11:25:27 -0500 Subject: [PATCH] Update Dockerfile Updated from pip to pip3 since using python3.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d0802046..b47db656 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.6-alpine RUN mkdir /app -RUN pip install requests beautifulsoup4 texttable plotly shodan +RUN pip3 install requests beautifulsoup4 texttable plotly shodan WORKDIR /app COPY . /app RUN chmod +x *.py