From 4d48613dd9604646ac938ab925936cadfb5f71cf Mon Sep 17 00:00:00 2001 From: cgeek <cem.moreau@gmail.com> Date: Thu, 27 Oct 2022 19:10:52 +0200 Subject: [PATCH] fix: Dockerfile: npx tsc --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c5b9a7..96a1cde 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY . . RUN rm -rf /app/node_modules RUN npm install -RUN npm run tsc +RUN npx tsc RUN node run.js config --bma --ipv4 localhost --port 10499 CMD ["node", "run.js", "currency-monit"] -- GitLab