annotate Sphinx/Dockerfile @ 1033:f3f320632887

merge
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 02 Feb 2024 16:37:54 +0100
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