occlum/example/container/Dockerfile_client
2022-09-19 10:48:00 +08:00

13 lines
240 B
Plaintext

FROM python:3.8
LABEL maintainer="Qi Zheng <huaiqing.zq@antgroup.com>"
ARG pip_mirror
COPY ./client /app
# RUN apt update && apt install -y python3-opencv
RUN pip install ${pip_mirror} -r /app/requirements.txt
WORKDIR /app
CMD ["bash"]