This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:16.04 | |
| MAINTAINER guolin@mulumu.com | |
| RUN apt-get update && apt-get install -y supervisor | |
| RUN mkdir -p /var/log/supervisor | |
| RUN apt-get install -y nodejs npm | |
| # 安装基本的库, supervisor, nodejs | |
| RUN apt-get update && apt-get install -y openssh-server | |
| RUN mkdir -p /var/run/sshd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "presets": ["es2015", "react"], | |
| "plugins": ["add-module-exports"] | |
| } |