Files
LogViewer/Dockerfile

8 lines
165 B
Docker
Raw Permalink Normal View History

2026-04-27 18:57:25 +07:00
# 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