diff --git a/Dockerfile b/Dockerfile index cb30717..9cf61ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,13 @@ -FROM node:lts-slim +FROM node:alpine WORKDIR /app COPY package.json ./ -RUN apt update;apt install python3 make -y - RUN npm install RUN npm install -g ts-node typescript COPY . . -CMD ts-node index.ts \ No newline at end of file +CMD node --loader ts-node/esm ./index.ts \ No newline at end of file