mirror of
https://github.com/sern-handler/cli
synced 2026-06-06 01:16:53 +00:00
16 lines
185 B
Docker
16 lines
185 B
Docker
FROM node:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install
|
|
|
|
RUN npm install -D typescript
|
|
|
|
COPY . .
|
|
|
|
RUN tsc --build || npx -p typescript tsc --build
|
|
|
|
CMD node dist/index.js
|