Files
LogViewer/Dockerfile
2026-04-27 19:37:54 +07:00

8 lines
165 B
Docker

# Use the lightest official nginx image
FROM nginx:alpine
# Copy static files to the nginx server directory
COPY . /usr/share/nginx/html
# Expose port 80
EXPOSE 80