Revision 661ce559e837785dacc1f1d11ec7eefe85a14c0d authored by Lorenzo Stella on 15 April 2020, 17:30:29 UTC, committed by GitHub on 15 April 2020, 17:30:29 UTC
Co-authored-by: Lorenzo Stella <stellalo@amazon.de>
1 parent 928283d
Raw File
Dockerfile
FROM python:3.7

ADD . /gluonts

RUN pip install /gluonts[shell]

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