Skip to content

akkuman/headless-wps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Headless-WPS

中文版本

run wps in headless docker

Intro

the base image of this image(akkuman/headless-wps) is debian:bullseye-slim

blog article

If you want to use wine msoffice2010, you can try docker-msoffice2010-python, but after my test, this is not stable enough, and it gets stuck regularly for unknown reasons

Usage

You can use this image as a base image for other image

example

FROM akkuman/headless-wps

RUN apt update && apt install libqt5xml5 python3 python3-pip

RUN python3 -m pip --no-cache-dir --no-compile install pywpsrpc

COPY example.py /root/example.py

CMD [ "python3", "example.py" ]

or look at the example

References