Henning Brinkmann
1c84f19da6
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
145 B
Docker
11 lines
145 B
Docker
FROM python
|
|
|
|
VOLUME /workspace
|
|
|
|
RUN pip install --upgrade pip
|
|
RUN pip install Lektor
|
|
|
|
WORKDIR /workspace
|
|
|
|
ENTRYPOINT [ "lektor" ]
|
|
CMD [ "build" ] |