This commit is contained in:
2025-12-30 17:37:14 +03:00
commit c33c5fd674
66 changed files with 10282 additions and 0 deletions

18
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM node:20-slim
WORKDIR /app
# Copy package files
COPY package.json .
# Install dependencies
RUN npm install
# Copy source files
COPY . .
# Expose port
EXPOSE 5173
# Run dev server
CMD ["npm", "run", "dev"]