From 40ab31b150815680e0d8f86131390fcdf2464ff7 Mon Sep 17 00:00:00 2001 From: mol Date: Tue, 5 Dec 2023 13:29:12 +0800 Subject: [PATCH] test --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cde5e71..021de42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,10 @@ WORKDIR /app VOLUME [ "/data" ] EXPOSE 22 -RUN apt-get update && apt-get install -y vim && apt-get install -y git && apt-get install -y openssh-server +RUN apt-get update +RUN apt-get install -y vim +RUN apt-get install -y git +RUN apt-get install -y openssh-server RUN npm i -g n && n auto && npm i -g live-server RUN git config --global user.name $GIT_USER && git config --global user.email $GIT_EMAIL