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 931.3kB Step 1/13 : FROM ubuntu:bionic ---> 5a214d77f5d7 Step 2/13 : RUN apt-get -y --fix-missing update ---> Using cache ---> aaad0fef2326 Step 3/13 : RUN apt-get -y install wget apt-transport-https ---> Using cache ---> 4b82b0f67ff6 Step 4/13 : RUN apt-get -y install python3 python3-dev python3-pip build-essential ---> Using cache ---> 007a4c7523e9 Step 5/13 : RUN pip3 install --upgrade pip ---> Using cache ---> 2b7a47044877 Step 6/13 : RUN pip3 install virtualenv requests tornado==4.5.3 ---> Using cache ---> 59c96f5410cb Step 7/13 : COPY sock2.py / ---> 778c84c3d0e5 Step 8/13 : COPY ol.c / ---> 54b4fe4425c3 Step 9/13 : COPY setup.py / ---> 6fb8989950f3 Step 10/13 : RUN cd / && python3 setup.py build_ext --inplace && mv ol.*.so /ol.so ---> Running in 07c4aefc482a running build_ext building 'ol' extension creating build creating build/temp.linux-x86_64-3.6 x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.6m -c ol.c -o build/temp.linux-x86_64-3.6/ol.o x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.6/ol.o -o /ol.cpython-36m-x86_64-linux-gnu.so Removing intermediate container 07c4aefc482a ---> c4ff047184fb Step 11/13 : COPY server.py / ---> 031c92adb97c Step 12/13 : COPY spin / ---> 832faee41af3 Step 13/13 : CMD ["/spin"] ---> Running in 3c57aaecdb11 Removing intermediate container 3c57aaecdb11 ---> 84c3aa1b350e Successfully built 84c3aa1b350e Successfully tagged lambda:latest touch imgs/lambda