mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
607 B
Docker
18 lines
607 B
Docker
FROM taskcluster/builder:0.5.11
|
|
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"]
|
|
|