mattermost-desktop/docker/Dockerfile

13 lines
349 B
Docker
Raw Normal View History

FROM suchja/wine:latest
MAINTAINER Yuya Ochiai <yuya0321@gmail.com>
2015-12-12 04:43:13 -08:00
ENV NODE_VERSION=v4.2.2
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
USER xclient
# install Node.js
RUN curl -L git.io/nodebrew | perl - setup && nodebrew install-binary $NODE_VERSION && nodebrew use $NODE_VERSION