Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func RunPipeline(isTesting bool) error {
}
defer client.Close()
pipCache := client.CacheVolume("pip_cache")
container := client.Container().From("python:3.11.9-bookworm").
container := client.Container().From("python:3.12.2-bookworm").
WithMountedCache("/root/.cache/pip", pipCache)

container = container.
Expand Down Expand Up @@ -117,6 +117,7 @@ func retrieveArtifacts(ctx context.Context, container *dagger.Container) error {
return nil
}

// Helper function
func ls(ctx context.Context, container *dagger.Container, dir string, message string) {
fmt.Println(message)
info, err := container.WithWorkdir(dir).WithExec([]string{"ls", "-la"}).Stdout(ctx)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name="github_dagger_workflow_project"
description="A project to demonstrate the Dagger workflow"
version="0.0.1"

requires-python = ">=3.11.9"
requires-python = ">=3.12.2"

[tool.ruff.format]
exclude = ['.git', '.venv']
Expand Down
Loading