File size: 252 Bytes
559611f 8ad7407 559611f f92cdbd 8ad7407 559611f 8ad7407 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Use a lightweight Nginx image
FROM nginx:alpine-slim
WORKDIR /usr/share/nginx/html
COPY dist/ .
COPY default.conf /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/nginx.conf
# Hugging Face expects the app to run on port 7860
EXPOSE 7860
|