revert: all the above

This commit is contained in:
2022-08-22 17:59:35 +02:00
parent 8b2039186d
commit a80e4e8a02

View File

@@ -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
CMD node --loader ts-node/esm ./index.ts