Skip to content

Commit c2faeab

Browse files
author
Zachery Moneypenny
committed
Adds Dockerfile and html file
1 parent 2c8d003 commit c2faeab

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FROM nginx
2+
3+
COPY ./site/index.html /usr/share/nginx/html

site/index.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Docker</title>
6+
</head>
7+
<body>
8+
<p>Hi there! Welcome to the web.</p>
9+
</body>
10+
</html>

0 commit comments

Comments
 (0)