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.
 
 
 
 
 
 

14 lines
156 B

  1. FROM node:argon
  2. RUN mkdir -p /src
  3. WORKDIR /src
  4. COPY package.json /src/
  5. RUN npm install
  6. COPY . /src
  7. RUN npm run build
  8. EXPOSE 8080
  9. CMD [ "npm", "start" ]