forked from LiveCarta/BookConverter
10 lines
137 B
Docker
10 lines
137 B
Docker
FROM python:3
|
|
|
|
COPY requirements.txt /app/
|
|
RUN pip install -r requirements.txt
|
|
COPY . /app/
|
|
|
|
WORKDIR /app/
|
|
|
|
CMD python ./src/consumer.py
|