File size: 252 Bytes
0d7faf7
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM nginx:alpine

# Copy web app
COPY index.html /usr/share/nginx/html/index.html

# HuggingFace Spaces uses port 7860
RUN sed -i 's/listen       80;/listen       7860;/' /etc/nginx/conf.d/default.conf

EXPOSE 7860

CMD ["nginx", "-g", "daemon off;"]