diff options
author | 2020-11-16 23:22:40 +0100 | |
---|---|---|
committer | 2020-11-16 23:22:40 +0100 | |
commit | 190414ed72c0c0f9fff5e1d503395cfeac1d7679 (patch) | |
tree | 79e3432a4722aacb078dbf10a75d6ea4a2b97a80 | |
parent | Don't use dockerx builder to build images (diff) |
Fix missing space in docker build command
-rw-r--r-- | .github/workflows/lint-test.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index d9748be..ee1ea67 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -24,7 +24,7 @@ jobs: - name: Build base image run: "docker build \ -f docker/base.Dockerfile \ - -t pythondiscord/snekbox-base:latest\ + -t pythondiscord/snekbox-base:latest \ ." - name: Show Containers @@ -33,7 +33,7 @@ jobs: - name: Build base image run: "docker build \ -f docker/venv.Dockerfile \ - -t pythondiscord/snekbox-venv:latest\ + -t pythondiscord/snekbox-venv:latest \ ." - name: Show Containers |