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.

12345678910111213141516
  1. FROM node:16
  2. WORKDIR ./src
  3. COPY package*.json ./
  4. COPY src ./
  5. RUN npm install
  6. ENV NODE_ENV='docker'
  7. # Bundle app source
  8. COPY . .
  9. EXPOSE 3000
  10. CMD [ "node", "server.js" ]