From 5bd7f6fd1130a0284cb8d1a432dc2b12f446105f Mon Sep 17 00:00:00 2001 From: Jasperhino Date: Mon, 9 Dec 2024 23:55:08 +0100 Subject: [PATCH] Remove unused volume --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6e5f536..4db21d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,15 +12,10 @@ COPY analytics/package.json . COPY analytics/pnpm-lock.yaml . COPY analytics/tsconfig.json . RUN mkdir /metrics -VOLUME ["/metrics"] - RUN pnpm install RUN pnpm run build - -# RUN curl -vL --compressed https://github.com/XAMPPRocky/tokei/releases/download/v12.1.2/tokei-x86_64-unknown-linux-gnu.tar.gz --output tokei.tar.gz -# RUN tar -xvf tokei.tar.gz RUN tokei /repository --output json > /metrics/metrics.json CMD [ "node", "/build/index.js" ]