This repository has been archived on 2026-02-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
swift-duct-calc/justfile

8 lines
186 B
Makefile

docker_image := "manuald"
build-docker:
@podman build -f docker/Dockerfile.dev -t {{docker_image}}:dev .
run-dev:
@podman run -it --rm -v $PWD:/app -p 8080:8080 {{docker_image}}:dev