view Sphinx/Dockerfile @ 970:bc531449c024

altering the content of a single instance
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 24 Aug 2023 09:56:03 +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