mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-23 10:45:45 +01:00
20 lines
456 B
Docker
20 lines
456 B
Docker
FROM node:7.5.0
|
|
|
|
ENV http_proxy="http://proxy.vmware.com:3128"
|
|
ENV https_proxy="http://proxy.vmware.com:3128"
|
|
|
|
RUN git clone https://github.com/vmware/clarity-seed.git /clarity-seed
|
|
|
|
COPY index.html /clarity-seed
|
|
COPY entrypoint.sh /clarity-seed
|
|
|
|
WORKDIR /clarity-seed
|
|
|
|
RUN npm install -g @angular/cli && \
|
|
npm install && \
|
|
chmod u+x entrypoint.sh
|
|
|
|
VOLUME ["/clarity-seed/src/app", "/clarity-seed/dist"]
|
|
|
|
ENTRYPOINT ["/clarity-seed/entrypoint.sh"]
|