docs: 认证授权服务部署文档
diff --git a/poa-api-docs/Dockerfile b/poa-api-docs/Dockerfile
new file mode 100644
index 0000000..bcb710c
--- /dev/null
+++ b/poa-api-docs/Dockerfile
@@ -0,0 +1,18 @@
+FROM alpine:latest
+
+# 安装toolkit
+RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
+RUN apk add --update curl && rm -rf /var/cache/apk/*
+
+RUN mkdir -p /root/poa-api-docs
+
+COPY api-docs/ /root/poa-api-docs/
+
+COPY exec.sh /root/poa-api-docs/
+RUN chmod +x /root/poa-api-docs/exec.sh
+
+COPY docker-entrypoint.sh /root/poa-api-docs/
+RUN chmod +x /root/poa-api-docs/docker-entrypoint.sh
+
+ENTRYPOINT ["/root/poa-api-docs/docker-entrypoint.sh"]
+CMD ["app"]