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/Dockerfile
2020-02-14 16:06:39 +03:00

12 lines
178 B
Docker

FROM python:3
RUN apt-get install libreoffice
COPY requirements.txt /app/
RUN pip install -r /app/requirements.txt
COPY . /app/
WORKDIR /app/
CMD python /app/src/consumer.py