Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
21 lines (16 sloc) 354 Bytes
# 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
You can’t perform that action at this time.