mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 17:49:48 +01:00
a12ec997cc
Change Dockerfile of UI builder
15 lines
318 B
Docker
15 lines
318 B
Docker
FROM node:7.5.0
|
|
|
|
RUN mkdir -p /harbor_resources
|
|
RUN mkdir -p /harbor_src
|
|
|
|
COPY src/ui_ng/package.json /harbor_resources
|
|
COPY make/dev/nodeclarity/entrypoint.sh /
|
|
|
|
WORKDIR /harbor_resources
|
|
|
|
RUN npm __proxy__ install -g @angular/cli && \
|
|
npm __proxy__ install && \
|
|
chmod u+x /entrypoint.sh
|
|
VOLUME ["/harbor_src"]
|