9 lines
104 B
Makefile
9 lines
104 B
Makefile
|
all: pull build
|
||
|
|
||
|
|
||
|
pull:
|
||
|
docker pull alpine:latest
|
||
|
|
||
|
build:
|
||
|
docker build --no-cache=true -t pgbouncer .
|