This commit is contained in:
Joey Eamigh 2023-08-30 19:44:24 -04:00
commit 01758e643a
No known key found for this signature in database
GPG Key ID: CE8C05DFFC53C9CB
3 changed files with 31 additions and 0 deletions

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM nginx
COPY src /usr/share/nginx/html

BIN
src/img/claiborne.soy.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

28
src/index.html Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clay Austin</title>
<style>
body {
width: 100%;
height: 100vh;
display: flex;
flex: 1;
justify-content: center;
align-items: center;
margin: 0;
padding: 0;
background-color: black;
}
img {
max-height: 100%;
max-width: 100%;
}
</style>
</head>
<body>
<img src="img/claiborne.soy.jpg" alt="Clay Austin" />
</body>
</html>