This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BookConverter/DockerfileLocal
2025-04-25 14:39:55 +03:00

18 lines
397 B
Plaintext

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