Henning Brinkmann
170a26f4ef
All checks were successful
continuous-integration/drone/push Build is passing
13 lines
193 B
Docker
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" ] |