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

WORKDIR /app

# Copy the rest of the application code
COPY --chown=user leaderboard-app/ ./

RUN npm install

# Build the app
RUN npm run build

# Expose the port the app will run on
# HF Spaces uses port 7860 by default
EXPOSE 7860 

# Start the app with the correct port
ENV PORT=7860
CMD ["npm", "start"]