Revision a894aee8aeb08fecaa9da5f8395f07dc554d29ed authored by Anton Kiselev on 21 October 2019, 13:00:20 UTC, committed by Jasper Schulz on 21 October 2019, 13:00:20 UTC
* Dockerfile for GPU container. Fix for installing GPU version of MXNet

* Typo fix. Replacing requirement without regex.
1 parent f1f971b
Raw File
Dockerfile
FROM python:3

ADD . /gluonts

RUN pip install /gluonts[shell]

ENTRYPOINT ["python", "-m", "gluonts.shell"]
back to top