Dockerfile 562 B

1234567891011121314
  1. FROM python:3.7
  2. MAINTAINER Michael B. Klein <michael.klein@northwestern.edu>
  3. RUN mkdir -p /usr/local /data
  4. WORKDIR /usr/local
  5. ADD . lakesuperior
  6. WORKDIR /usr/local/lakesuperior
  7. RUN git submodule update --init
  8. RUN [[ -f lakesuperior/model/base.c ]] || pip install cython
  9. RUN pip install -e .
  10. RUN cp ./docker/etc/* ./lakesuperior/etc.defaults/
  11. CMD ./docker/docker_entrypoint
  12. EXPOSE 8000
  13. HEALTHCHECK --interval=30s --timeout=5s \
  14. CMD curl -X OPTIONS -f http://localhost:8000/ || exit 1