File size: 301 Bytes
d885efe
 
 
 
4a1f5f8
 
4cbad5b
51e97b9
4a1f5f8
 
 
 
d885efe
 
 
 
4cbad5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM node:20-alpine

WORKDIR /app

# Copy package files first and install deps
COPY package*.json ./
RUN npm install

# Create an uploads folder with write permissions
RUN mkdir -p /app/uploads && chmod -R 777 /app/uploads

# Copy the rest of the files
COPY . .

EXPOSE 7860

CMD ["node", "serve.js"]