base dockerfile

This commit is contained in:
Andreas Knuth 2025-09-19 12:37:24 -05:00
parent 41ecb75be5
commit 269a0727fb
1 changed files with 17 additions and 0 deletions

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"]