- Arsen Musayelyan -
- -- Software Engineer -
- -Hello
-diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..15ce475 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/public/ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..75af6af --- /dev/null +++ b/Dockerfile @@ -0,0 +1,2 @@ +FROM nginx +COPY public /usr/share/nginx/html \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5d8b3f0 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +all: public docker + +public: + hugo + +docker: + docker build -t arsen6331/site . + +.PHONY: docker \ No newline at end of file diff --git a/public/404.html b/public/404.html deleted file mode 100644 index 512ecb5..0000000 --- a/public/404.html +++ /dev/null @@ -1,291 +0,0 @@ - - - -
- - - - - - - -- Error 404 -
-It seems that the page you've requested does not exist.
-Hello
-package main
-
-import (
- "fmt"
-)
-
-func main() {
- fmt.Println("Hello, World")
-}
-