1
0
Fork 0
mirror of https://github.com/seejohnrun/haste-server.git synced 2024-11-01 11:31:22 +00:00

Adds Dockerfile for building docker image

This commit is contained in:
Jason Gwartz 2017-10-03 20:59:01 +02:00
parent f19c5d1049
commit a719367e18

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM node:slim
# To add your own config file, mount it into the container at runtime
# with `docker run -v <config_file>:/src/config.js jasongwartz/haste-server`
EXPOSE 7777
COPY . /src
WORKDIR /src
RUN npm install
CMD ["npm", "start"]