labeler/Dockerfile
2019-01-24 22:35:54 +01:00

10 lines
167 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./labeler.py" ]