This commit is contained in:
morgan
2026-03-13 19:22:23 +03:00
parent 84fbf63a20
commit 8917f1631f

7
Dockerfile Normal file
View File

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