Dockerfile hinzugefügt

This commit is contained in:
michi 2025-06-06 15:40:42 +02:00
parent a6025b01d8
commit ba0e1be567

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM node:18-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "run", "dev"]