occlum/tools/docker/ci/Dockerfile.grpc

15 lines
399 B
Docker

ARG OCCLUM_VERSION
FROM occlum/occlum:$OCCLUM_VERSION-ubuntu18.04 as base
LABEL maintainer="Chunyang Hui <sanqian.hcy@antgroup.com>"
WORKDIR /root
RUN git clone 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