Skip to content

Commit e336644

Browse files
authored
Fix Docker build command syntax in workflow
1 parent 2a78727 commit e336644

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/docker-build-frontend.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ jobs:
1111
- uses: actions/checkout@v4
1212

1313
- name: Build the Frontend Docker image
14-
run: docker build ShowcaseProject --file ShowcaseProject/ShowcaseFrontend/Dockerfile --tag my-image-name:$(date +%s)
14+
run: |
15+
docker build ShowcaseProject --file ShowcaseProject/ShowcaseFrontend/Dockerfile --tag my-image-name:$(date +%s) ShowcaseProject

0 commit comments

Comments
 (0)