2020-03-17 17:21:41 +00:00
|
|
|
FROM $DOCKER_IMAGE_PARENT
|
|
|
|
MAINTAINER Gregory Mierzwinski <gmierzwinski@mozilla.com>
|
|
|
|
|
|
|
|
# run-task expects to run as root
|
|
|
|
USER root
|
|
|
|
|
|
|
|
RUN apt-get update -qq && \
|
|
|
|
apt-get install -y \
|
|
|
|
ffmpeg \
|
|
|
|
imagemagick \
|
|
|
|
pyssim \
|
|
|
|
python \
|
2022-02-02 16:13:55 +00:00
|
|
|
python-pil
|
2020-03-17 17:21:41 +00:00
|
|
|
|
|
|
|
WORKDIR /builds/worker
|
|
|
|
|
|
|
|
USER worker:worker
|
|
|
|
|
|
|
|
COPY requirements.txt /builds/worker/requirements.txt
|
|
|
|
RUN pip3 install --require-hashes -r /builds/worker/requirements.txt && \
|
|
|
|
rm /builds/worker/requirements.txt
|
|
|
|
|
2020-05-11 15:19:55 +00:00
|
|
|
COPY similarity.py /builds/worker/bin/similarity.py
|
2020-03-17 17:21:41 +00:00
|
|
|
COPY run-visual-metrics.py /builds/worker/bin/run-visual-metrics.py
|
|
|
|
COPY performance-artifact-schema.json /builds/worker/performance-artifact-schema.json
|
|
|
|
|
|
|
|
USER root
|
|
|
|
RUN chmod +x /builds/worker/bin/run-visual-metrics.py
|
|
|
|
|
|
|
|
VOLUME /builds/worker/artifacts/
|