Added docker file and html

هذا الالتزام موجود في:
Chris Ayers
2022-04-06 12:16:11 -07:00
الأصل b3b352967d
التزام b33197b127
2 ملفات معدلة مع 14 إضافات و0 حذوفات

عرض الملف

@@ -0,0 +1,2 @@
FROM nginx:alpine
COPY src/. /usr/share/nginx/html/

عرض الملف

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World</title>
</head>
<body>
Hello from a container!
</body>
</html>