view Sphinx/Dockerfile @ 783:0fbe952b2906

list more lua functions
author Alain Mazy <am@osimis.io>
date Fri, 01 Oct 2021 16:53:46 +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