2e33398d1f
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
11 lines
244 B
Docker
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
|