Skip to content

Commit 502ca18

Browse files
committed
fix ci (docker build)
1 parent 86e1d1d commit 502ca18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/github-actions.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
- name: Build and push the image to DockerHub
3232
run: |
3333
echo "$DOCKER_PASSWORD" | docker login $DOCKER_REPOSITORY -u $DOCKER_USERNAME --password-stdin
34-
docker build -t $DOCKER_IMAGE_PHP:$(git rev-parse --short HEAD) docker/php/.
34+
docker build -t $DOCKER_IMAGE_PHP:$(git rev-parse --short HEAD) -f docker/php/Dockerfile .
3535
docker push $DOCKER_IMAGE_PHP:$(git rev-parse --short HEAD)
36-
docker build -t $DOCKER_IMAGE_PYTHON:$(git rev-parse --short HEAD) docker/python/.
36+
docker build -t $DOCKER_IMAGE_PYTHON:$(git rev-parse --short HEAD) -f docker/python/Dockerfile .
3737
docker push $DOCKER_IMAGE_PYTHON:$(git rev-parse --short HEAD)
3838
3939
publish-docker-image:

0 commit comments

Comments
 (0)