Permalink
BinaryMuse
Update builds to include libsecret
0c32fcc
Apr 20, 2017
Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign up| # VERSION: 0.1 | |
| # DESCRIPTION: Image to build Atom and create a .rpm file | |
| # Base docker image | |
| FROM nodesource/fedora21:4.2.6 | |
| # Install dependencies | |
| RUN yum install -y \ | |
| make \ | |
| gcc \ | |
| gcc-c++ \ | |
| glibc-devel \ | |
| git-core \ | |
| libsecret-devel \ | |
| rpmdevtools | |
| RUN npm install -g npm --loglevel error | |
| ADD . /atom | |
| WORKDIR /atom |