From 7e01f0b49697bc7f5ec3451c4eba1b28e339e973 Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 9 Apr 2023 09:32:15 +0600 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 874762d..7c33c07 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update RUN apt-get install -y git RUN rm -rf /var/lib/apt/lists/* RUN npm install -RUN git clone -n https://github.com/wukko/cobalt.git --depth 1 && cd cobalt && git checkout ${GIT_COMMIT} . +RUN git clone -n https://github.com/wukko/cobalt.git --depth 1 && mv cobalt/.git ./ && rm -rf cobalt COPY . . EXPOSE 9000 CMD [ "node", "src/cobalt" ]