-
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
2 changed files
with
14 additions
and
6 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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
# Do not edit this file directly. It is generated by FluentDocker. | ||
|
||
FROM homebrew/brew:latest | ||
RUN brew install fluentci-io/tap/fluentci | ||
FROM denoland/deno:alpine | ||
RUN curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.8 sh | ||
RUN mv bin/dagger /usr/local/bin | ||
RUN dagger version | ||
RUN deno install -A -r https://cli.fluentci.io -n fluentci | ||
RUN fluentci --version | ||
CMD fluentci | ||
ENTRYPOINT fluentci |
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 |
---|---|---|
@@ -1,10 +1,15 @@ | ||
import { Dockerfile } from "https://deno.land/x/[email protected]/mod.ts"; | ||
|
||
const image = new Dockerfile() | ||
.from("homebrew/brew:latest") | ||
.run("brew install fluentci-io/tap/fluentci") | ||
.from("denoland/deno:alpine") | ||
.run( | ||
"curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.8 sh" | ||
) | ||
.run("mv bin/dagger /usr/local/bin") | ||
.run("dagger version") | ||
.run("deno install -A -r https://cli.fluentci.io -n fluentci") | ||
.run("fluentci --version") | ||
.cmd("fluentci"); | ||
.entrypoint("fluentci"); | ||
|
||
const dockerfile = image.toString(); | ||
|
||
|