-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
28 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
FROM ghcr.io/fluentci-io/devbox:latest | ||
RUN devbox version | ||
RUN devbox global add yarn [email protected] [email protected] | ||
RUN eval "$(devbox global shellenv)" && bun --version | ||
RUN eval "$(devbox global shellenv)" && node --version | ||
CMD eval "$(devbox global shellenv)" && bun | ||
RUN eval "$(devbox global shellenv --recompute)" && bun --version | ||
RUN eval "$(devbox global shellenv --recompute)" && node --version | ||
CMD eval "$(devbox global shellenv --recompute)" && bun |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ const image = new Dockerfile() | |
.from("ghcr.io/fluentci-io/devbox:latest") | ||
.run("devbox version") | ||
.run("devbox global add yarn [email protected] [email protected]") | ||
.run('eval "$(devbox global shellenv)" && bun --version') | ||
.run('eval "$(devbox global shellenv)" && node --version') | ||
.cmd('eval "$(devbox global shellenv)" && bun'); | ||
.run('eval "$(devbox global shellenv --recompute)" && bun --version') | ||
.run('eval "$(devbox global shellenv --recompute)" && node --version') | ||
.cmd('eval "$(devbox global shellenv --recompute)" && bun'); | ||
|
||
const dockerfile = image.toString(); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,10 @@ import { Dockerfile } from "https://deno.land/x/[email protected]/mod.ts"; | |
const image = new Dockerfile() | ||
.from("ghcr.io/fluentci-io/devbox:latest") | ||
.run("devbox global add sonar-scanner-cli nodejs") | ||
.run('eval "$(devbox global shellenv)" && sonar-scanner --version') | ||
.cmd('eval "$(devbox global shellenv)" && sonar-scanner'); | ||
.run( | ||
'eval "$(devbox global shellenv --recompute)" && sonar-scanner --version' | ||
) | ||
.cmd('eval "$(devbox global shellenv --recompute)" && sonar-scanner'); | ||
|
||
const dockerfile = image.toString(); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
|
||
FROM ghcr.io/fluentci-io/devbox:latest | ||
RUN devbox global add [email protected] | ||
RUN eval "$(devbox global shellenv)" && zig version | ||
CMD eval "$(devbox global shellenv)" && zig | ||
RUN eval "$(devbox global shellenv --recompute)" && zig version | ||
CMD eval "$(devbox global shellenv --recompute)" && zig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ import { Dockerfile } from "https://deno.land/x/[email protected]/mod.ts"; | |
const image = new Dockerfile() | ||
.from("ghcr.io/fluentci-io/devbox:latest") | ||
.run("devbox global add [email protected]") | ||
.run('eval "$(devbox global shellenv)" && zig version') | ||
.cmd('eval "$(devbox global shellenv)" && zig'); | ||
.run('eval "$(devbox global shellenv --recompute)" && zig version') | ||
.cmd('eval "$(devbox global shellenv --recompute)" && zig'); | ||
|
||
const dockerfile = image.toString(); | ||
|
||
|