mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 03:30:51 +01:00
13 lines
225 B
Docker
13 lines
225 B
Docker
FROM node:7.5.0
|
|
|
|
COPY angular-cli.json /
|
|
COPY index.html /
|
|
COPY entrypoint.sh /
|
|
|
|
RUN npm install -g @angular/cli && \
|
|
chmod u+x entrypoint.sh
|
|
|
|
VOLUME ["/clarity-seed", "/clarity-seed/dist"]
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|