mirror of
https://github.com/SrIzan10/vinci.git
synced 2026-06-06 01:07:00 +00:00
15 lines
167 B
Docker
15 lines
167 B
Docker
FROM node:lts-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN apt install python3
|
|
|
|
RUN npm install
|
|
|
|
RUN npm install -g ts-node typescript
|
|
|
|
COPY . .
|
|
|
|
CMD ts-node index.ts |