Files
lookbusy-docker/Dockerfile
T

13 lines
438 B
Docker
Raw Normal View History

2023-02-02 03:22:44 +08:00
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
2023-05-24 12:21:46 +07:00
RUN git clone https://github.com/10h30/lookbusy.git
2023-02-02 03:22:44 +08:00
RUN cd lookbusy && chmod +x ./configure && ./configure && make
# COPY start.sh /root/
2023-05-24 12:21:46 +07:00
CMD ["sh", "/app/start.sh"]