12 lines
437 B
Bash
12 lines
437 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
#==========================================================
|
||
|
# System Required: Debian (32bit/64bit)
|
||
|
# Version: v1.0.0
|
||
|
# Author: xueye
|
||
|
# Blog: https://www.simaek.com
|
||
|
# Description: 构建yapi的Docker镜像
|
||
|
# Usage: chmod +x build.sh && ./build.sh
|
||
|
#==========================================================
|
||
|
|
||
|
docker build -f Dockerfile -t simaek/yapi:latest .
|