4 lines
92 B
Bash
4 lines
92 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# 构建镜像,不使用缓存
|
||
|
docker build -t webtrader --no-cache .
|