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.
 
 
 
 
 
 

17 rivejä
255 B

  1. FROM node:boron-slim
  2. MAINTAINER "LessPass <contact@lesspass.com>"
  3. LABEL name="LessPass Frontend"
  4. RUN mkdir -p /frontend
  5. WORKDIR /frontend
  6. COPY package.json /frontend/
  7. RUN npm install --production
  8. COPY . /frontend
  9. EXPOSE 8080
  10. CMD [ "npm", "start" ]