lector-drone/Dockerfile

15 lines
228 B
Docker

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