This commit is contained in:
velor2012
2023-02-02 03:22:44 +08:00
parent 060942cd7f
commit 896abe2963
5 changed files with 65 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM ubuntu:18.04
WORKDIR /app
#RUN sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list
#RUN sed -i s@/security.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list
RUN apt-get update
RUN apt-get -y install vim cmake build-essential wget git
RUN git clone https://github.com/flow2000/lookbusy.git
RUN cd lookbusy && chmod +x ./configure && ./configure && make
# COPY start.sh /root/
CMD ["sh", "/app/start.sh"]