view Sphinx/Dockerfile @ 560:5c0dfc863884

note for postgresql 3.3
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 14 Dec 2020 18:06:04 +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