Added Dockerfile + Change storage default to 'file'
This commit is contained in:
		
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -4,3 +4,4 @@ node_modules | |||||||
| *.swo | *.swo | ||||||
| data | data | ||||||
| *.DS_Store | *.DS_Store | ||||||
|  | .idea | ||||||
							
								
								
									
										18
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | |||||||
|  | FROM    centos:centos6 | ||||||
|  | RUN     yum install -y epel-release | ||||||
|  | RUN     yum install -y nodejs npm | ||||||
|  |  | ||||||
|  | # Create app directory | ||||||
|  | RUN mkdir -p /usr/src/app | ||||||
|  | WORKDIR /usr/src/app | ||||||
|  |  | ||||||
|  | # Install app dependencies | ||||||
|  | COPY package.json /usr/src/app/ | ||||||
|  | RUN npm install | ||||||
|  |  | ||||||
|  | # Bundle app source | ||||||
|  | COPY . /usr/src/app | ||||||
|  |  | ||||||
|  | EXPOSE 7777 | ||||||
|  | CMD [ "npm", "start" ] | ||||||
|  |  | ||||||
		Reference in New Issue
	
	Block a user