Skip to content

Commit 155e914

Browse files
committed
Fix the assembly of the Docker image in CI
1 parent 0171537 commit 155e914

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,16 +395,16 @@ lazy val dockerSettings = Def.settings(
395395
Cmd("USER", "root"),
396396
Cmd(
397397
"RUN",
398-
"apk --no-cache add bash git gpg ca-certificates curl maven openssh nodejs npm ncurses"
398+
"apk --no-cache add bash git gpg ca-certificates curl maven openssh nodejs npm ncurses sqlite sqlite-dev"
399399
),
400400
Cmd("RUN", installSbt),
401401
Cmd("RUN", installMill),
402402
Cmd("RUN", installCoursier),
403403
Cmd("RUN", installScalaCli),
404404
Cmd("RUN", s"$csBin install --install-dir $binDir scalafix scalafmt"),
405-
Cmd("RUN", "npm install --global yarn"),
406405
// Ensure binaries are in PATH
407406
Cmd("RUN", "echo $PATH"),
407+
Cmd("RUN", "npm install --global yarn"),
408408
Cmd("RUN", "which cs mill mvn node npm sbt scala-cli scalafix scalafmt yarn")
409409
)
410410
},

0 commit comments

Comments
 (0)