annotate Sphinx/Dockerfile @ 1088:eaf09977e3e9

ReadCommitted
author Alain Mazy <am@orthanc.team>
date Mon, 01 Jul 2024 10:23:55 +0200
parents a3d3ff83024d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
92
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
1 FROM python:2.7
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
2
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
3 COPY requirements.txt /app/
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
4 WORKDIR /app
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
5 RUN pip install -r requirements.txt
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
6
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
7 COPY . /app
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
8
a3d3ff83024d attachments doc + build with docker
amazy
parents:
diff changeset
9 ENTRYPOINT make html