Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

17 строки
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" ]