diff options
| author | Kapil Viren Ahuja <k.v.ahuja@gmail.com> | 2017-02-10 15:13:07 +0530 |
|---|---|---|
| committer | Kapil Viren Ahuja <k.v.ahuja@gmail.com> | 2017-02-10 15:13:07 +0530 |
| commit | 403b09e35496b3fc7cc27d9a692baed5549924b8 (patch) | |
| tree | cabbc564349b4a24d20b47b1f1d14d3e8ddfd9c9 /python | |
| parent | 93e44e57fbbb86df7a03c6d9ecfa751fb22342a1 (diff) | |
| download | vaindock-403b09e35496b3fc7cc27d9a692baed5549924b8.tar.gz vaindock-403b09e35496b3fc7cc27d9a692baed5549924b8.zip | |
pulled the python container from the apigrabber and put into vaindock folder as it's being done for all others.
(THIS IS NOT YET TESTED). installation of gcc is taking obnoxiously long
Diffstat (limited to 'python')
| -rw-r--r-- | python/Dockerfile | 5 | ||||
| -rw-r--r-- | python/requirements.txt | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/python/Dockerfile b/python/Dockerfile new file mode 100644 index 0000000..cb78b90 --- /dev/null +++ b/python/Dockerfile @@ -0,0 +1,5 @@ +FROM python:3.5-alpine +ADD requirements.txt / +RUN apk add --no-cache ca-certificates gcc linux-headers build-base +RUN pip install -r /requirements.txt +CMD ["python3", "/apps/api/api.py"] diff --git a/python/requirements.txt b/python/requirements.txt new file mode 100644 index 0000000..7d8614e --- /dev/null +++ b/python/requirements.txt @@ -0,0 +1,10 @@ +aiohttp==1.2.0 +appdirs==1.4.0 +async-timeout==1.1.0 +asyncpg==0.8.4 +chardet==2.3.0 +multidict==2.1.4 +packaging==16.8 +pyparsing==2.1.10 +six==1.10.0 +yarl==0.9.0 |
