mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +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
|