Files
2026-06-17 12:36:06 +02:00

11 lines
244 B
Docker

# 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