mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-25 19:56:09 +01:00
544cc98971
* add base images when to build harbor assets Signed-off-by: wang yan <wangyan@vmware.com>
14 lines
282 B
Docker
14 lines
282 B
Docker
FROM goharbor/harbor-prepare-base:${harbor_base_image_version}
|
|
|
|
ENV LANG en_US.UTF-8
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN mkdir -p /harbor_make
|
|
|
|
COPY make/photon/prepare /usr/src/app
|
|
RUN set -ex && pipenv install --deploy --system
|
|
|
|
ENTRYPOINT [ "python3", "main.py" ]
|
|
|
|
VOLUME ["/harbor_make"] |