view Sphinx/Dockerfile @ 816:908ca7847b9d

added incoming-cstore-filter.py
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 23 Feb 2022 11:08:20 +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