Update Dockerfile

Updated from pip to pip3 since using python3.6
This commit is contained in:
Matt 2019-01-06 11:25:27 -05:00 committed by GitHub
parent c8cd85c924
commit 66e443376a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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