mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 06:48:38 +09:00
12 lines
298 B
Makefile
12 lines
298 B
Makefile
|
|
DOCKERIO_USERNAME =$(error DOCKERIO_USERNAME should be set)
|
||
|
|
IMAGE_NAME = firefox-snapcraft
|
||
|
|
FULL_IMAGE_NAME = $(DOCKERIO_USERNAME)/$(IMAGE_NAME)
|
||
|
|
|
||
|
|
build:
|
||
|
|
docker build -t $(FULL_IMAGE_NAME) --no-cache --rm .
|
||
|
|
|
||
|
|
push:
|
||
|
|
docker push $(FULL_IMAGE_NAME):latest
|
||
|
|
|
||
|
|
pull:
|
||
|
|
docker pull $(FULL_IMAGE_NAME):latest
|