File size: 323 Bytes
c857d1a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM node:20-slim

# Install pnpm and essential tools
RUN npm install -g pnpm

WORKDIR /app

# Copy server package file
COPY package.json ./

# Install server dependencies
RUN pnpm install

# Copy all server files
COPY . .

# Hugging Face default port expose
EXPOSE 7860

# Start the bridge server
CMD ["node", "server.js"]