feat: add Dockerfile

This commit is contained in:
gitadmin 2026-05-02 13:07:27 +00:00
parent 98a3fa5b99
commit 6fc9af3dc5

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
EXPOSE 3000
ENV NODE_ENV=production
ENV PORT=3000
CMD ["node", "--import", "tsx/esm", "server.ts"]