move dockerfile into codebase

This commit is contained in:
Terry Brady
2018-07-26 14:08:17 -07:00
parent b6e4e2562d
commit f4c2b88ffd
2 changed files with 12 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
# This image will be published as dspace/dspace-angular
# See https://dspace-labs.github.io/DSpace-Docker-Images/ for usage details
FROM node:8
WORKDIR /app
ADD . /app/
EXPOSE 3000
RUN yarn install
CMD yarn run watch