diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6c03744 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,24 @@ +# jeffery russell 12-19-2020 + +FROM node:buster-slim + +WORKDIR /src/ + + + +COPY package.json package.json + +RUN ls -la + +# installs pandoc +RUN apt-get update && \ + apt-get install ffmpeg -y + +# installs node dependencies +RUN npm install + +# exposes port application runs on +EXPOSE 4000 + +# launch command +CMD npm start \ No newline at end of file