Personal blog written from scratch using Node.js, Bootstrap, and MySQL. https://jrtechs.net
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.

20 lines
297 B

  1. # jeffery russell 12-17-2020
  2. FROM node:buster-slim
  3. WORKDIR /src/
  4. # installs node dependencies
  5. RUN npm install
  6. ADD package.json package.json
  7. # installs pandoc
  8. RUN apt-get update && \
  9. apt-get install pandoc -y
  10. # exposes port application runs on
  11. EXPOSE 8000
  12. # launch command
  13. CMD npm start