# Floating Flows — static site served by nginx
FROM nginx:1.27-alpine

# Site files into the nginx web root
COPY . /usr/share/nginx/html

# Custom server config (gzip + asset caching)
COPY nginx.conf /etc/nginx/conf.d/default.conf

EXPOSE 80
