diff --git a/devbox/lime-build/Dockerfile b/devbox/lime-build/Dockerfile new file mode 100644 index 0000000..8bb1452 --- /dev/null +++ b/devbox/lime-build/Dockerfile @@ -0,0 +1,11 @@ +FROM ubuntu:latest +MAINTAINER encrypt + +RUN apt-get update && \ + apt-get install -y build-essential git libncurses5-dev zlib1g-dev gawk unzip python wget subversion libssl-dev + +# fix /usr/sbin/find not found issue + +RUN ln /usr/bin/find /usr/sbin/find && \ + useradd user -m +