diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..c223690 --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,16 @@ +FROM debian:latest + +RUN apt-get update && \ + apt-get -y install npm && \ + apt-get clean + +RUN (cd /root && git clone https://github.com/liamcottle/meshtxt && cd /root/meshtxt && npm install && npm run build) + +WORKDIR /root/meshtxt + +CMD ["node", "server.js", "--port", "8080"] + +EXPOSE 8080 + + +