add docker file for lime build box
This commit is contained in:
parent
08566f9441
commit
b4a0d219bf
1 changed files with 11 additions and 0 deletions
11
devbox/lime-build/Dockerfile
Normal file
11
devbox/lime-build/Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM ubuntu:latest
|
||||
MAINTAINER encrypt <encrypt@labr.xyz>
|
||||
|
||||
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
|
||||
|
Loading…
Reference in a new issue