annotate Sphinx/Dockerfile @ 499:d255e02eb89d

updated object-storage doc for 1.0.0
author Alain Mazy <alain@mazy.be>
date Tue, 01 Sep 2020 18:08:45 +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