mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
11 lines
219 B
Docker
11 lines
219 B
Docker
# 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
|