Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
1 contributor

Users who have contributed to this file

17 lines (10 sloc) 269 Bytes
FROM python:3.7.3-stretch
WORKDIR /app
COPY . /app
RUN pip install .
RUN mkdir /raintale-work
WORKDIR /raintale-work
# keep the container running so we can execute raintale commands
# CMD ["tail", "-f", "/dev/null"]
# CMD ["/bin/bash", "-l"]
ENTRYPOINT /bin/bash
You can’t perform that action at this time.