Skip to content

Instantly share code, notes, and snippets.

@girol
Created January 23, 2022 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save girol/138e85b13c4ea9ba6d3d336e9862c87c to your computer and use it in GitHub Desktop.
Save girol/138e85b13c4ea9ba6d3d336e9862c87c to your computer and use it in GitHub Desktop.
sample-docker
FROM nginx:alpine
COPY index.html /usr/share/nginx/html
<!DOCTYPE html>
<html lang='pt-br'>
<head>
<meta charset='UTF-8'>
<title>Simple Docker Static</title>
</head>
<body>
<div class="container">
<h1>Olar Vocer</h1>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment