mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-13 13:19:34 +08:00
23 lines
401 B
Text
23 lines
401 B
Text
|
# VERSION: 0.1
|
||
|
# DESCRIPTION: Image to build Atom and create a .rpm file
|
||
|
|
||
|
# Base docker image
|
||
|
FROM fedora:20
|
||
|
|
||
|
# Install dependencies
|
||
|
RUN yum install -y \
|
||
|
make \
|
||
|
gcc \
|
||
|
gcc-c++ \
|
||
|
glibc-devel \
|
||
|
git-core \
|
||
|
libgnome-keyring-devel \
|
||
|
rpmdevtools
|
||
|
|
||
|
# Install node
|
||
|
RUN curl -sL https://rpm.nodesource.com/setup | bash -
|
||
|
RUN yum install -y nodejs
|
||
|
|
||
|
ADD . /atom
|
||
|
WORKDIR /atom
|