testing / Dockerfile
nolascoin's picture
Final Dockerfile + Nginx configs for Hugging Face
559611f
raw
history blame contribute delete
252 Bytes
# 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