blob: a245bcbe54b5700ad428f04df5bcd410b8f6a8b7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
FROM taskcluster/centos6-build:0.1.6
MAINTAINER Dustin J. Mitchell <dustin@mozilla.com>
### update to latest from upstream repositories
# if this becomes a long list of packages, consider bumping the
# centos6-build version
RUN yum update -y
# Set a default command useful for debugging
CMD ["/bin/bash", "--login"]
|