view Sphinx/Dockerfile @ 283:443af82172b0

added a sample of headers for HttpPost lua method
author amazy
date Tue, 17 Sep 2019 09:53:17 +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