feat: Updates README to reflect updates for base image of a dev container.
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 5m40s

This commit is contained in:
2026-02-01 16:24:14 -05:00
parent 125209a99b
commit 27337cd0e0
3 changed files with 76 additions and 48 deletions

View File

@@ -2,4 +2,7 @@ docker_image := "swift-dev"
docker_tag := "latest"
build:
@podman build -t {{docker_image}}:{{docker_tag}} .
@docker build -t {{docker_image}}:{{docker_tag}} .
run *ARGS:
@docker run -it --rm {{docker_image}}:{{docker_tag}} {{ARGS}}