From 6d7667869fbd25484f07cb2ea92241ebcb9f49c5 Mon Sep 17 00:00:00 2001 From: SrIzan10 <66965250+SrIzan10@users.noreply.github.com> Date: Sat, 1 Oct 2022 22:16:01 +0200 Subject: [PATCH] fix: dockerfile not having ts --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2fa78dc..af357d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ WORKDIR /server RUN npm i +RUN npm i -g typescript + EXPOSE 7272 CMD tsc --watch;node dist/index.js \ No newline at end of file