add converter local launch

This commit is contained in:
Svitin Egor
2025-04-25 14:39:55 +03:00
parent 9be0a46162
commit 43f65f9712
4 changed files with 98 additions and 0 deletions

18
DockerfileLocal Normal file
View File

@@ -0,0 +1,18 @@
FROM python:3.11.0
RUN apt-get update && \
apt-get install -y software-properties-common
RUN add-apt-repository -r ppa:libreoffice/ppa
RUN apt-get update
RUN apt-get -y install libreoffice
COPY requirements.txt /app/
RUN pip install -r /app/requirements.txt
RUN pip install debugpy
WORKDIR /app/
CMD tail -f > /dev/null
#python3 -m debugpy --listen 0.0.0.0:5678 --wait-for-client test.py