File size: 1,167 Bytes
4e0e2d8
 
62c3fe0
 
 
 
4e0e2d8
62c3fe0
4e0e2d8
 
62c3fe0
 
4e0e2d8
62c3fe0
4e0e2d8
 
62c3fe0
 
 
842fcca
62c3fe0
 
 
 
4e0e2d8
62c3fe0
 
 
4e0e2d8
cc0d23d
62c3fe0
 
 
 
4e0e2d8
842fcca
 
62c3fe0
 
 
 
4e0e2d8
62c3fe0
 
 
4e0e2d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Stage 1: Build the Vite frontend
FROM node:18 AS build

# Set the working directory
WORKDIR /app

# Copy only package.json and lock file first (better for caching)
COPY frontend/package.json frontend/package-lock.json ./frontend/

# Install dependencies
RUN cd frontend && npm install

# Copy the rest of the frontend code
COPY frontend ./frontend

# Build the Vite app
RUN cd frontend && npm run build

# Stage 2: Set up the Node.js backend
FROM node:18

# Set the working directory
WORKDIR /app

# Copy backend dependencies
COPY backend/package.json backend/package-lock.json ./backend/
RUN cd backend && npm install

# Copy the Vite build output from Stage 1 to the backend's static folder
COPY --from=build /app/frontend/dist ./backend/build

# Copy the backend source code
COPY backend ./backend

# Ensure database folder exists and has correct permissions
RUN mkdir -p /app/backend/database && chmod -R 777 /app/backend/database \
    && touch /app/backend/server.log && chmod 777 /app/backend/server.log

# Expose the backend's port
EXPOSE 7860

# Set working directory to backend
WORKDIR /app/backend

# Start the backend server
CMD [ "node", "./index.js" ]