lector-drone/Dockerfile
Henning Brinkmann 1c84f19da6
All checks were successful
continuous-integration/drone/push Build is passing
build project mounted at /workspace by default
2021-04-25 11:40:26 +02:00

11 lines
145 B
Docker

FROM python
VOLUME /workspace
RUN pip install --upgrade pip
RUN pip install Lektor
WORKDIR /workspace
ENTRYPOINT [ "lektor" ]
CMD [ "build" ]