We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9f2994 commit a40fb14Copy full SHA for a40fb14
.github/workflows/cd.deploy.stg.yml
@@ -90,7 +90,7 @@ jobs:
90
91
- name: Build docker image
92
run: |
93
- docker build -f ./web-server.Dockerfile -t ghcr.io/dzcode-io/stage-dot-dzcode-dot-io-server:latest
+ docker buildx build -f web-server.Dockerfile . -t ghcr.io/dzcode-io/stage-dot-dzcode-dot-io-server:latest
94
env:
95
DOCKER_BUILDKIT: 1
96
scripts/deploy.rs
@@ -46,9 +46,11 @@ fn main() {
46
cli_run::cli_run(
47
"docker",
48
vec![
49
+ "buildx",
50
"build",
51
"-f",
- "./web-server.Dockerfile",
52
+ "web-server.Dockerfile",
53
+ ".",
54
"-t",
55
&format!("ghcr.io/dzcode-io/{}-dot-dzcode-dot-io-server:latest", env_str),
56
],
0 commit comments