Files
Stream-Aggregator/Dockerfile
2026-07-19 14:00:28 -05:00

11 lines
227 B
Docker

FROM nginx:alpine
# Copy the static web application files
COPY index.html /usr/share/nginx/html/index.html
COPY streams.txt /usr/share/nginx/html/streams.txt
# Nginx default port
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]