mirror of
https://github.com/sern-handler/cli
synced 2026-06-06 01:16:53 +00:00
14 lines
121 B
TypeScript
14 lines
121 B
TypeScript
FROM node:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN tsc --build
|
|
|
|
RUN node dist/index.js
|