summaryrefslogtreecommitdiff
path: root/docs/Dockerfile
blob: 8981589af250d660e5a65b4669f82e5e8a92346c (plain)
1
2
3
4
5
# Readthedocs build container with project dependencies pre-installed
FROM readthedocs/build:8.0
COPY . /src/
RUN pip3 install -U /src/[docs,backends]
ENTRYPOINT ["/bin/bash"]