Files
konn3kt-docs/Dockerfile
2026-06-21 13:44:14 -05:00

8 lines
173 B
Docker

FROM nginx:alpine
# Copy the static documentation files into the Nginx default html directory
COPY . /usr/share/nginx/html
# Expose port 80 inside the container
EXPOSE 80