initial commit
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
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;"]
|
||||
Reference in New Issue
Block a user