h/Dockerfile

9 lines
91 B
Docker

FROM python:2
ADD . /h
WORKDIR /h
RUN ./env.sh
ONBUILD ADD config /h/config
CMD ./run.sh