Add non-compose support

This commit is contained in:
xackery
2023-10-01 13:52:52 -07:00
parent fc75ad175a
commit fb299896b9
2 changed files with 15 additions and 2 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
IMAGE_NAME := docker-aseprite
build: build-image
docker run --rm \
-v ${PWD}/output:/output \
-v ${PWD}/dependencies:/dependencies \
${IMAGE_NAME}
build-compose:
docker-compose build
docker-compose up
build-image:
docker build -t ${IMAGE_NAME} .