mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-27 20:59:10 +01:00
5f80fe7b8a
Signed-off-by: Qian Deng <dengq@vmware.com>
18 lines
307 B
Docker
18 lines
307 B
Docker
FROM photon:2.0
|
|
|
|
ENV LANG en_US.UTF-8
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN mkdir -p /harbor_make
|
|
|
|
RUN tdnf install -y python3 \
|
|
&& tdnf install -y python3-pip
|
|
RUN pip3 install pipenv
|
|
|
|
COPY . /usr/src/app
|
|
RUN set -ex && pipenv install --deploy --system
|
|
|
|
ENTRYPOINT [ "python3", "main.py" ]
|
|
|
|
VOLUME ["/harbor_make"] |