Mercurial > hg > orthanc-book
view Sphinx/Dockerfile @ 785:4ff2c6ff472a
health check in docker images
author | Alain Mazy <am@osimis.io> |
---|---|
date | Fri, 15 Oct 2021 11:24:15 +0200 |
parents | a3d3ff83024d |
children |
line wrap: on
line source
FROM python:2.7 COPY requirements.txt /app/ WORKDIR /app RUN pip install -r requirements.txt COPY . /app ENTRYPOINT make html