base dockerfile

This commit is contained in:
2025-09-19 12:37:24 -05:00
parent 41ecb75be5
commit 269a0727fb

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
ENV NODE_ENV=production
EXPOSE 3000
CMD ["npm", "start"]