mirror of
https://github.com/SrIzan10/ava.git
synced 2026-06-06 00:46:53 +00:00
13 lines
120 B
Docker
13 lines
120 B
Docker
FROM node:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN tsc --build
|
|
|
|
CMD node dist/index.js |