Skip to content

Commit f67825b

Browse files
Rename Dockerfile
1 parent c8e2d7e commit f67825b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ build:
2424
set -euxo pipefail
2525
# accepts justfile env/vars
2626
if [[ {{arch}} == "arm64" ]]; then
27-
docker build -f Dockerfile.web -t {{APP}}:{{TAG}} --build-arg CHIPSET_ARCH=aarch64-linux-gnu .
27+
docker build -f Dockerfile -t {{APP}}:{{TAG}} --build-arg CHIPSET_ARCH=aarch64-linux-gnu .
2828
else
29-
docker buildx build -f Dockerfile.web --progress=plain -t {{APP}}:{{TAG}} --build-arg CHIPSET_ARCH=x86_64-linux-gnu --load .
29+
docker buildx build -f Dockerfile --progress=plain -t {{APP}}:{{TAG}} --build-arg CHIPSET_ARCH=x86_64-linux-gnu --load .
3030
fi
3131

3232
# intel build
3333
buildx:
34-
docker buildx build -f Dockerfile.web --progress=plain -t $TAG --build-arg CHIPSET_ARCH=x86_64-linux-gnu --load .
34+
docker buildx build -f Dockerfile --progress=plain -t $TAG --build-arg CHIPSET_ARCH=x86_64-linux-gnu --load .
3535

3636
# arm build w/docker-compose defaults
3737
build-clean:

0 commit comments

Comments
 (0)