summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/worker/Dockerfile
blob: 86395e01c68be41eb657ea34414e5e361091b228 (plain)
1
2
3
4
5
6
7
8
FROM python:3.5
ENV PYTHONUNBUFFERED 1
RUN mkdir /config
ADD ./requirements.txt /config/
RUN pip install -r /config/requirements.txt
RUN useradd -ms /bin/bash celery
USER celery
WORKDIR /src