mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 08:09:59 +01:00
47793e77e3
Signed-off-by: wang yan <wangyan@vmware.com>
15 lines
312 B
Docker
15 lines
312 B
Docker
ARG harbor_base_image_version
|
|
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"] |