forked from LiveCarta/BookConverter
12 lines
178 B
Docker
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
|