mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-18 21:30:42 +00:00
18 lines
606 B
Docker
18 lines
606 B
Docker
FROM taskcluster/builder:0.5.9
|
|
MAINTAINER Wander Lairson Costa <wcosta@mozilla.com>
|
|
|
|
ENV SOCORRO_SYMBOL_UPLOAD_TOKEN_FILE /home/worker/socorro.token
|
|
|
|
# Add utilities and configuration
|
|
ADD bin /home/worker/bin
|
|
ADD config /home/worker/.aws/config
|
|
ADD socorro.token /home/worker/socorro.token
|
|
|
|
RUN yum install -y bc lzop java-1.7.0-openjdk
|
|
RUN pip install awscli
|
|
RUN npm install -g bower gulp apm grunt-cli
|
|
|
|
# Set a default command useful for debugging
|
|
ENTRYPOINT ["validate_task.py"]
|
|
|