From 60b41a7baf74abb8a271c29123596cbc833525af Mon Sep 17 00:00:00 2001 From: zane <39070793+zaneenders@users.noreply.github.com> Date: Wed, 25 Jun 2025 19:19:04 -0600 Subject: [PATCH] Updates the Dockerfile's Swift version to match the `Package.swift` version. When running the command `docker-compose -f docker/docker-compose.yaml run test`, the project fails to build because of mismatched Swift versions. Update the Dockerfile to Swift 5.10. Docker test command now runs successfully. --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 760b293..ce899d2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -ARG swift_version=5.9 +ARG swift_version=5.10 ARG ubuntu_version=jammy ARG base_image=swift:$swift_version-$ubuntu_version FROM $base_image