mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-02 03:40:16 +00:00
33 lines
819 B
Docker
33 lines
819 B
Docker
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 \
|
|
python-pil \
|
|
python3 \
|
|
python3-pip
|
|
|
|
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
|
|
|
|
COPY similarity.py /builds/worker/bin/similarity.py
|
|
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/
|