Merge pull request #39 from kreatemore/docker-support

Introduced basic Docker support
This commit is contained in:
Raphael 2019-03-03 13:31:05 +01:00 committed by GitHub
commit f3d0052eaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM jfloff/alpine-python:3.6-onbuild
ADD . /opt/phoneinfoga
WORKDIR /opt/phoneinfoga
ENTRYPOINT ["python", "phoneinfoga.py"]