website online working

This commit is contained in:
2025-08-16 21:52:09 -04:00
parent 71a51d1276
commit eeaf45defe
4 changed files with 33 additions and 8 deletions

19
Dockerfile.dev Executable file
View File

@@ -0,0 +1,19 @@
FROM node:20.11.1
ENV VITE_BASE_URL="http://localhost:9510"
ENV VITE_AUTO_URL="http://localhost:9514"
ENV VITE_MONEY_URL="http://localhost:9513"
ENV VITE_COMPANY_ID='1'
RUN mkdir -p /app
WORKDIR /app
COPY package*.json ./
ENV PATH /app/node_modules/.bin:$PATH
RUN npm install
COPY . /app