mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-18 16:25:16 +01:00
038d7dd90c
* Updates for verfied tags deletion. * Remove old UI. * Move i18n folder. * Updates for latest UI codes. * make travis with latest dev code. * update test code * add cat log * cat nginx * cat nginx * fix template error * remove --with-notary * remove controller test * fix controller test bug * modify controller test * debug controller test * update controller test * update index title to harbor, discussed with Kun. * Update package.json * Merge latest UI changes. * remove git
18 lines
464 B
Docker
18 lines
464 B
Docker
FROM node:7.5.0
|
|
|
|
RUN mkdir -p /clarity-seed
|
|
|
|
COPY src/ui_ng/package.json /clarity-seed
|
|
COPY src/ui_ng/tslint.json /clarity-seed
|
|
COPY src/ui_ng/typings.json /clarity-seed
|
|
COPY src/ui_ng/yarn.lock /clarity-seed
|
|
COPY make/dev/nodeclarity/angular-cli.json /clarity-seed
|
|
COPY make/dev/nodeclarity/entrypoint.sh /
|
|
|
|
WORKDIR /clarity-seed
|
|
|
|
RUN npm install -g @angular/cli && \
|
|
npm install && \
|
|
chmod u+x /entrypoint.sh
|
|
|
|
VOLUME ["/clarity-seed", "/clarity-seed/dist"] |