pylokid/Dockerfile

15 lines
283 B
Docker
Raw Normal View History

2019-01-06 12:25:37 +00:00
FROM python:3.7
2019-09-22 18:34:38 +00:00
# Install pdftotext
RUN set -x; \
apt update && \
apt install -y poppler-utils && \
rm -rf /var/lib/apt/lists/*
2019-01-06 12:25:37 +00:00
WORKDIR /usr/src/pylokid
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./main.py" ]