You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
twitter-profile-pic/Dockerfile

12 lines
119 B

FROM node:8-alpine
WORKDIR /app
ADD package.json .
RUN npm install --production
ADD . .
EXPOSE 9090
CMD npm start