forked from LiveCarta/BookConverter
18 lines
397 B
Plaintext
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 |