Skip to content

Commit

Permalink
udocker: add Entrypoint to ContainerConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
joonas-fi committed Nov 17, 2023
1 parent 0610aaf commit f1d76e2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/udocker/dockerstructs.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ type Mount struct {
}

type ContainerConfig struct {
Labels map[string]string `json:"Labels"`
Env []string `json:"Env"`
Labels map[string]string `json:"Labels"`
Env []string `json:"Env"`
Entrypoint []string `json:"Entrypoint"`
}

type Service struct {
Expand Down

0 comments on commit f1d76e2

Please sign in to comment.