8 lines
121 B
Docker
8 lines
121 B
Docker
FROM node:23-alpine
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN npm install
|
|
RUN npm install typescript -D
|
|
RUN npx tsc
|
|
|
|
CMD ["node", "dist"] |