Skip to content

Commit

Permalink
[#175] Override/Reset entrypoint during container creation
Browse files Browse the repository at this point in the history
  • Loading branch information
apoorvam committed Aug 27, 2019
1 parent cf6f188 commit 81ec33b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions internal/settings/settings_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package settings

import (
"fmt"
"reflect"
"testing"

Expand All @@ -11,7 +10,6 @@ import (

func TestInit(t *testing.T) {
Init()
fmt.Print(viper.AllSettings())
defaultSettings := map[string]interface{}{
"dunnertaskfile": internal.DefaultDunnerTaskFileName,
"dotenvfile": ".env",
Expand Down
1 change: 1 addition & 0 deletions pkg/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ func (step Step) Exec() error {
Env: step.Env,
WorkingDir: containerWorkingDir,
User: step.User,
Entrypoint: []string{},
},
&container.HostConfig{
Mounts: append(step.ExtMounts, mount.Mount{
Expand Down

0 comments on commit 81ec33b

Please sign in to comment.