Initial commit: svg frontend

This commit is contained in:
greebo
2026-03-19 13:42:23 +03:00
commit 89e52e3193
31 changed files with 3425 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
ARG VITE_FRONTEND_PORT=28080
ENV VITE_FRONTEND_PORT=${VITE_FRONTEND_PORT}
EXPOSE 28080
CMD ["sh", "-c", "npm run dev"]