Dockerfile 493 B

12345678910111213
  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 pip install -e .
  9. RUN cp ./docker/etc/* ./lakesuperior/etc.defaults/
  10. CMD ./docker/docker_entrypoint
  11. EXPOSE 8000
  12. HEALTHCHECK --interval=30s --timeout=5s \
  13. CMD curl -X OPTIONS -f http://localhost:8000/ || exit 1