lector-drone/Dockerfile

15 lines
228 B
Docker
Raw Normal View History

2021-04-16 10:40:59 +02:00
FROM python
2021-04-25 11:31:36 +02:00
VOLUME /workspace
2021-06-07 00:38:39 +02:00
RUN apt-get update && apt-get -y install rsync
2021-04-25 11:31:36 +02:00
RUN pip install --upgrade pip
2021-04-16 10:40:59 +02:00
RUN pip install Lektor
2021-06-07 01:02:43 +02:00
COPY ssh_config /root/.ssh/config
WORKDIR /workspace
ENTRYPOINT [ "lektor" ]
CMD [ "build" ]