Skip to content

teimurjan/meteor-alpine-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

meteor-alpine-node

Minimal docker image for using Meteor.js

It's based on mhart's alpine-node package.

Dockerfile example:

FROM teimurjan/meteor-alpine-node
WORKDIR /usr/src/app
COPY . .
RUN npm install
CMD meteor run --port $PORT