fixes for docker local

This commit is contained in:
2025-11-03 20:55:06 -05:00
parent 661aaf39b0
commit 623cbf8c4c

View File

@@ -3,27 +3,36 @@ FROM node:20.11.1 AS builder
ENV VITE_BASE_URL="http://192.168.1.204:9610" ENV VITE_BASE_URL="http://192.168.1.204:9610"
ENV VITE_AUTO_URL="http://192.168.1.204:9614" ENV VITE_AUTO_URL="http://192.168.1.204:9614"
ENV VITE_MONEY_URL="http://192.168.1.204:9613" ENV VITE_MONEY_URL="http://192.168.1.204:9613"
ENV VITE_AUTHORIZE_URL="http://localhost:9516" ENV VITE_AUTHORIZE_URL="http://192.168.1.204:9616"
ENV VITE_VOIPMS_URL="http://localhost:9517" ENV VITE_VOIPMS_URL="http://192.168.1.204:9617"
ENV VITE_COMPANY_ID='1' ENV VITE_COMPANY_ID='1'
WORKDIR /app WORKDIR /app
COPY package*.json .
RUN npm ci COPY package.json ./
# --- THE FIX IS HERE ---
# 1. Install ALL dependencies (including devDependencies like vue-tsc)
RUN npm install
# 2. Copy the rest of your source code
COPY . . COPY . .
# 3. Now run the build, which will succeed because vue-tsc is installed
RUN npm run build RUN npm run build
RUN npm prune --production
# --- STAGE 2: Serve the built files with Nginx ---
FROM nginx:stable-alpine
# Copy the static files from the 'builder' stage
FROM nginx:stable-alpine as production-stage
ENV NODE_ENV=production
# Copy the build application from the previous stage to the Nginx container
COPY --from=builder /app/dist /usr/share/nginx/html COPY --from=builder /app/dist /usr/share/nginx/html
# Copy the nginx configuration file
COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf # Copy your custom Nginx configuration
# Expose the port 80 COPY nginx/default.conf /etc/nginx/conf.d/default.conf
# Tell the world that port 80 is now listening
EXPOSE 80 EXPOSE 80
# Start Nginx to serve the application
# Start Nginx when the container launches
CMD ["nginx", "-g", "daemon off;"] CMD ["nginx", "-g", "daemon off;"]