mirror of
https://github.com/sern-handler/cli
synced 2026-06-06 01:16:53 +00:00
11 lines
102 B
Docker
11 lines
102 B
Docker
FROM node:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN node src/index.js |