mirror of
https://github.com/SrIzan10/vinci.git
synced 2026-06-06 01:07:00 +00:00
14 lines
206 B
Docker
14 lines
206 B
Docker
|
|
FROM node:lts-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install
|
|
|
|
RUN npm install -g ts-node typescript
|
|
|
|
COPY . .
|
|
|
|
CMD node --experimental-specifier-resolution=node --loader ts-node/esm ./index.ts |