occlum/tools/docker/ci/Dockerfile.grpc

17 lines
463 B
Docker

ARG OCCLUM_VERSION
FROM occlum/occlum:$OCCLUM_VERSION-ubuntu18.04 as base
LABEL maintainer="Chunyang Hui <sanqian.hcy@antgroup.com>"
ARG OCCLUM_BRANCH
WORKDIR /root
RUN rm -rf /root/demos && \
git clone -b $OCCLUM_BRANCH https://github.com/occlum/occlum.git && \
cp -r occlum/demos /root/demos && \
rm -rf /root/occlum
WORKDIR /root/demos/grpc
RUN bash -x download_and_install_openssl.sh && \
bash -x download_and_install_grpc.sh
WORKDIR /root