Skip to content

Commit 52e696e

Browse files
authored
Update Makefile
adding `-f Containerfile` because docker now doesn't support "Containerfile" as a default.
1 parent 9db44e4 commit 52e696e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
IMAGE_NAME ?= bu-spark
44

55
build:
6-
docker build -t $(IMAGE_NAME) .
6+
docker build -t $(IMAGE_NAME) -f Containerfile .
77

88
run:
99
docker rm $(IMAGE_NAME) || true
@@ -20,4 +20,4 @@ build-nocache:
2020
docker build --no-cache -t $(IMAGE_NAME) .
2121

2222
build-nocache-podman:
23-
podman build --no-cache -t $(IMAGE_NAME) .
23+
podman build --no-cache -t $(IMAGE_NAME) .

0 commit comments

Comments
 (0)