diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-06-21 15:18:03 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-06-21 15:18:03 +0200 |
| commit | fb3d4a57d67420648c11e7ab82b15d19cf719fac (patch) | |
| tree | 2df81bc38167718af9e87c634bd6190335340474 | |
| parent | 02d2cfbd0df62cf8d9fc2bb54d1046a9e6c45378 (diff) | |
| download | analyzer-fb3d4a57d67420648c11e7ab82b15d19cf719fac.tar.gz analyzer-fb3d4a57d67420648c11e7ab82b15d19cf719fac.zip | |
rm tensorflow
| -rw-r--r-- | Dockerfile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,10 +1,9 @@ -FROM tensorflow/tensorflow:1.1.0-rc1-py3 +FROM python:3.6-alpine RUN mkdir -p /usr/src/app WORKDIR /usr/src/app COPY . /usr/src/app -RUN apt-get update && apt-get install -y --no-install-recommends git && apt-get clean -RUN pip install virtualenv && virtualenv venv && pip install -r requirements.txt && pip install git+git://github.com/zzzeek/sqlalchemy +RUN apk add --no-cache git && pip install --no-cache-dir -r requirements.txt && pip install --no-cache-dir git+git://github.com/zzzeek/sqlalchemy CMD ["python", "worker.py"] |
