cd /root/open-lambda/src && go build -mod vendor -o ../ol make -C lambda make[1]: Entering directory '/root/open-lambda/lambda' gcc -O2 --static -o spin spin.c make[1]: Leaving directory '/root/open-lambda/lambda' docker build -t lambda lambda Sending build context to Docker daemon 890.4kB Step 1/13 : FROM ubuntu:bionic ---> 5a214d77f5d7 Step 2/13 : RUN apt-get -y --fix-missing update ---> Using cache ---> ae392f3ba213 Step 3/13 : RUN apt-get -y install wget apt-transport-https ---> Using cache ---> 775943d81466 Step 4/13 : RUN apt-get -y install python3 python3-dev python3-pip build-essential ---> Using cache ---> b05f07d57a14 Step 5/13 : RUN pip3 install --upgrade pip ---> Using cache ---> 73a77fa7a1cb Step 6/13 : RUN pip3 install virtualenv requests tornado==4.5.3 ---> Using cache ---> 4630d5c1845d Step 7/13 : COPY sock2.py / ---> Using cache ---> e5079ad02249 Step 8/13 : COPY ol.c / ---> Using cache ---> 37b71bee1e7c Step 9/13 : COPY setup.py / ---> Using cache ---> 34b3597f196a Step 10/13 : RUN cd / && python3 setup.py build_ext --inplace && mv ol.*.so /ol.so ---> Using cache ---> f118ca4e71ac Step 11/13 : COPY server.py / ---> Using cache ---> e9fca41cffff Step 12/13 : COPY spin / ---> Using cache ---> cad41eceb088 Step 13/13 : CMD ["/spin"] ---> Using cache ---> 48a8ace3c0b7 Successfully built 48a8ace3c0b7 Successfully tagged lambda:latest touch imgs/lambda