From b42a69e70b7dd2a9432713b79b6345fd2f2b887b Mon Sep 17 00:00:00 2001 From: philipcheung Date: Sun, 16 Mar 2025 14:38:39 +0800 Subject: [PATCH] try to depoly --- Dockerfile | 31 +++++++------------------------ docker-compose.yml | 2 +- vite.config.ts | 13 ++++++++++++- 3 files changed, 20 insertions(+), 26 deletions(-) diff --git a/Dockerfile b/Dockerfile index c273a70..d8cc42e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,34 +1,17 @@ -FROM node:18-alpine AS build +FROM node:18-alpine WORKDIR /app -# Copy package files first for better layer caching -COPY package.json package-lock.json* ./ +COPY package.json . -# Install dependencies -RUN npm ci +RUN npm install + +RUN npm i -g serve -# Copy the rest of the application COPY . . -# Build the application RUN npm run build -# Production stage -FROM node:18-alpine AS production +EXPOSE 3000 -WORKDIR /app - -# Copy only the built assets and necessary files from the build stage -COPY --from=build /app/dist ./dist -COPY --from=build /app/package.json ./ - - -# Expose the port Vite uses by default -EXPOSE 5173 - -# Use a static file server for production builds -RUN npm install -g serve - -# Serve the built application -CMD ["serve", "-s", "dist", "-l", "5173"] \ No newline at end of file +CMD [ "serve", "-s", "dist" ] \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 12b17f5..646f5fa 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,7 +6,7 @@ services: container_name: healthy-oil ports: - - "5173:5173" + - "3005:3000" volumes: - .:/app - /app/node_modules diff --git a/vite.config.ts b/vite.config.ts index e62c238..4ae833c 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -3,5 +3,16 @@ import react from '@vitejs/plugin-react' import tsconfigPaths from "vite-tsconfig-paths" // https://vite.dev/config/ export default defineConfig({ - plugins: [react(),tsconfigPaths()], + base: "/", + plugins: [react(), tsconfigPaths()], + preview: { + port: 8080, + strictPort: true, + }, + server: { + port: 8080, + strictPort: true, + host: true, + origin: "http://0.0.0.0:8080", + }, })