File size: 193 Bytes
90a6e1f
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM node:18-alpine

WORKDIR /app

COPY package*.json ./

RUN npm install --production

COPY . .

# Expose the port that Hugging Face expects (default is 7860)
EXPOSE 7860

CMD ["npm", "start"]