lector-drone/Dockerfile
Henning Brinkmann 170a26f4ef
All checks were successful
continuous-integration/drone/push Build is passing
install rsync
2021-06-07 00:38:39 +02:00

13 lines
193 B
Docker

FROM python
VOLUME /workspace
RUN apt-get update && apt-get -y install rsync
RUN pip install --upgrade pip
RUN pip install Lektor
WORKDIR /workspace
ENTRYPOINT [ "lektor" ]
CMD [ "build" ]