mirror of
https://github.com/status-im/actions-gh-pages.git
synced 2025-01-11 13:54:29 +00:00
11 lines
249 B
Makefile
11 lines
249 B
Makefile
IMAGE_NAME := docker.pkg.github.com/peaceiris/actions-gh-pages/dev:latest
|
|
NODE_VERSION := $(shell cat ./.nvmrc)
|
|
|
|
.PHONY: build
|
|
build:
|
|
docker-compose build --build-arg NODE_VERSION=$(NODE_VERSION)
|
|
|
|
.PHONY: run
|
|
run:
|
|
docker-compose run --rm dev bash
|