Henning Brinkmann
b4924c407e
All checks were successful
continuous-integration/drone/push Build is passing
15 lines
228 B
Docker
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" ] |