mattermost-desktop/docker/Dockerfile

16 lines
486 B
Docker
Raw Normal View History

FROM suchja/wine:latest
MAINTAINER Yuya Ochiai <yuya0321@gmail.com>
2016-06-06 06:56:19 -07:00
ENV NODE_VERSION=v6.1.0
ENV PATH=$HOME/.nodebrew/current/bin:$PATH
2015-12-11 06:24:12 -08:00
USER root
RUN apt-get update && apt-get -y install wget bzip2 zip
2016-04-26 07:00:07 -07:00
# electron-builder
2016-04-26 07:19:43 -07:00
RUN apt-get update && apt-get -y install ruby ruby-dev gcc make icnsutils graphicsmagick xz-utils && gem install fpm
2016-04-26 07:00:07 -07:00
2015-12-11 06:24:12 -08:00
USER xclient
# install Node.js
RUN curl -L git.io/nodebrew | perl - setup && nodebrew install-binary $NODE_VERSION && nodebrew use $NODE_VERSION