This repository has been archived on 2025-12-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
word/Dockerfile
2025-12-15 22:42:52 +01:00

13 lines
335 B
Docker

# Simple static site image: serve the contents of /public with nginx
FROM nginx:alpine
WORKDIR /usr/share/nginx/html
# Copy static files
COPY public/ ./
# If the site references additional resources, copy them too
COPY resources/ ./resources
# Provide custom nginx.conf for clean URLs
COPY nginx.conf /etc/nginx/conf.d/default.conf