forked from kiri-art/docker-diffusers-api
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild
More file actions
Latest commit
executable file
·12 lines (10 loc) · 385 Bytes
/
Copy pathbuild
File metadata and controls
executable file
·12 lines (10 loc) · 385 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# This is my common way of building, but you can build however you like.
# Note if you using a proxy, you need to have it running first.
DOCKER_BUILDKIT=1 BUILDKIT_PROGRESS=plain \
docker build \
-t gadicc/diffusers-api \
-t gadicc/diffusers-api:test \
--build-arg http_proxy="http://172.17.0.1:3128" \
--build-arg https_proxy="http://172.17.0.1:3128" \
"$@".