# 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 | |