view Sphinx/Dockerfile @ 821:d7c8c8f6cffb

removed 'LimitJobs' that is unused
author Alain Mazy <am@osimis.io>
date Mon, 07 Mar 2022 10:58:09 +0100
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