diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..80314ab --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM mafgwo/wkhtmltopdf-nodejs:11.15.0 + +WORKDIR /opt/stackedit + +COPY package*json /opt/stackedit/ +COPY gulpfile.js /opt/stackedit/ + +RUN npm install --unsafe-perm \ + && npm cache clean --force +COPY . /opt/stackedit +ENV NODE_ENV production +RUN npm run build + +EXPOSE 8080 + +CMD [ "node", "." ]