delete all duplicate empty blanks

Signed-off-by: Xiang Dai <764524258@qq.com>
This commit is contained in:
Xiang Dai
2019-02-21 10:53:33 +08:00
parent 994f6ac101
commit d4bbcc0cfb
14 changed files with 24 additions and 24 deletions

View File

@@ -15,11 +15,11 @@
例如,编写 `app.go` 文件,该程序输出 `Hello World!`
```go
package main
package main
import "fmt"
import "fmt"
func main(){
func main(){
fmt.Printf("Hello World!");
}
```
@@ -146,7 +146,7 @@ WORKDIR /root/
COPY --from=0 /go/src/github.com/go/helloworld/app .
CMD ["./app"]
CMD ["./app"]
```
构建镜像

View File

@@ -62,7 +62,7 @@ COPY webpack.mix.js /app/
COPY resources/assets/ /app/resources/assets/
RUN cd /app \
&& npm run production
&& npm run production
```
### 安装 Composer 依赖