11 lines
227 B
Docker
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;"]
|