mirror of
https://github.com/logos-messaging/logos-messaging-simulator.git
synced 2026-07-28 10:53:26 +00:00
13 lines
129 B
Docker
13 lines
129 B
Docker
|
|
FROM node:22-slim
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY package.json package-lock.json* ./
|
||
|
|
|
||
|
|
RUN npm ci
|
||
|
|
|
||
|
|
COPY . .
|
||
|
|
|
||
|
|
ENTRYPOINT ["node", "index.ts"]
|
||
|
|
|