labeler/Dockerfile

11 lines
167 B
Text
Raw Normal View History

2019-01-24 22:35:54 +01:00
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./labeler.py" ]