lector-drone/Dockerfile
Henning Brinkmann b4924c407e
All checks were successful
continuous-integration/drone/push Build is passing
disable strict host key checking
2021-06-07 01:02:43 +02:00

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" ]