annotate Sphinx/Dockerfile @ 1101:62951fa88d41

merge
author Alain Mazy <am@orthanc.team>
date Tue, 06 Aug 2024 09:48:51 +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