Auth: registration/login/logout/whoami
diff --git a/core/auth/ui/Makefile b/core/auth/ui/Makefile
new file mode 100644
index 0000000..c444c97
--- /dev/null
+++ b/core/auth/ui/Makefile
@@ -0,0 +1,18 @@
+build:
+ go build -o server *.go
+
+clean:
+ rm -f server
+
+image: clean build
+ docker build --tag=giolekva/auth-ui .
+
+push: image
+ docker push giolekva/auth-ui:latest
+
+
+push_arm64: export GOOS=linux
+push_arm64: export GOARCH=arm64
+push_arm64: export CGO_ENABLED=0
+push_arm64: export GO111MODULE=on
+push_arm64: push