-
Notifications
You must be signed in to change notification settings - Fork 11
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
1 parent
d8a06f8
commit 1e02d10
Showing
3 changed files
with
118 additions
and
43 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,45 +1,109 @@ | ||
[ | ||
{"name":"Deno app", | ||
"installs":[ | ||
{"name":"Deno app alpine OS","path":"../templates/dockerfiles/Deno_app_alpine.dockerfile"}, | ||
{"name":"Deno app binary only","path":"../templates/dockerfiles/Deno_app_bin.dockerfile"} | ||
] | ||
}, | ||
{"name":"Nodejs app", | ||
"installs":[ | ||
{"name":"Nodejs app with npm","path":"../templates/dockerfiles/Nodejs_app.dockerfile","ignoreFilePath":"../templates/ignorefiles/Nodejs_app"}, | ||
{"name":"Nodejs app with yarn","path":"../templates/dockerfiles/Nodejs_app_yarn.dockerfile","ignoreFilePath":"../templates/ignorefiles/Nodejs_app"} | ||
] | ||
}, | ||
{"name":"Reactjs app", | ||
"installs":[ | ||
{"name":"Reactjs app with npm","path":"../templates/dockerfiles/Reactjs_app.dockerfile","ignoreFilePath":"../templates/ignorefiles/Reactjs_app"}, | ||
{"name":"Reactjs app with yarn","path":"../templates/dockerfiles/Reactjs_app_yarn.dockerfile","ignoreFilePath":"../templates/ignorefiles/Reactjs_app"} | ||
] | ||
}, | ||
{"name":"Vuejs app", | ||
"installs":[ | ||
{"name":"Vuejs app with npm","path":"../templates/dockerfiles/Vuejs_app.dockerfile","ignoreFilePath":"../templates/ignorefiles/Vuejs_app"}, | ||
{"name":"Vuejs app with yarn","path":"../templates/dockerfiles/Vuejs_app_yarn.dockerfile","ignoreFilePath":"../templates/ignorefiles/Vuejs_app"} | ||
{ | ||
"name": "Deno app", | ||
"installs": [ | ||
{ | ||
"name": "Deno app alpine OS", | ||
"path": "../templates/dockerfiles/Deno_app_alpine.dockerfile" | ||
}, | ||
{ | ||
"name": "Deno app binary only", | ||
"path": "../templates/dockerfiles/Deno_app_bin.dockerfile" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Nodejs app", | ||
"installs": [ | ||
{ | ||
"name": "Nodejs app with npm", | ||
"path": "../templates/dockerfiles/Nodejs_app.dockerfile", | ||
"ignoreFilePath": "../templates/ignorefiles/Nodejs_app" | ||
}, | ||
{ | ||
"name": "Nodejs app with yarn", | ||
"path": "../templates/dockerfiles/Nodejs_app_yarn.dockerfile", | ||
"ignoreFilePath": "../templates/ignorefiles/Nodejs_app" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Bun app", | ||
"installs": [ | ||
{ | ||
"name": "Bun app with bun package manager", | ||
"path": "../templates/dockerfiles/Bun_app.dockerfile", | ||
"ignoreFilePath": "../templates/ignorefiles/Bun_app" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Reactjs app", | ||
"installs": [ | ||
{ | ||
"name": "Reactjs app with npm", | ||
"path": "../templates/dockerfiles/Reactjs_app.dockerfile", | ||
"ignoreFilePath": "../templates/ignorefiles/Reactjs_app" | ||
}, | ||
{ | ||
"name": "Reactjs app with yarn", | ||
"path": "../templates/dockerfiles/Reactjs_app_yarn.dockerfile", | ||
"ignoreFilePath": "../templates/ignorefiles/Reactjs_app" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Vuejs app", | ||
"installs": [ | ||
{ | ||
"name": "Vuejs app with npm", | ||
"path": "../templates/dockerfiles/Vuejs_app.dockerfile", | ||
"ignoreFilePath": "../templates/ignorefiles/Vuejs_app" | ||
}, | ||
{ | ||
"name": "Vuejs app with yarn", | ||
"path": "../templates/dockerfiles/Vuejs_app_yarn.dockerfile", | ||
"ignoreFilePath": "../templates/ignorefiles/Vuejs_app" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Angular app", | ||
"installs": [ | ||
{ | ||
"name": "Angular app with npm", | ||
"path": "../templates/dockerfiles/Angular_app.dockerfile", | ||
"ignoreFilePath": "../templates/ignorefiles/Angular_app" | ||
}, | ||
{ | ||
"name": "Angular app with yarn", | ||
"path": "../templates/dockerfiles/Angular_app_yarn.dockerfile", | ||
"ignoreFilePath": "../templates/ignorefiles/Angular_app" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Rust app", | ||
"installs": [ | ||
{ | ||
"name": "Rust app with cargo", | ||
"path": "../templates/dockerfiles/Rust_app_cargo.dockerfile", | ||
"ignoreFilePath": "../templates/ignorefiles/Rust_app_cargo" | ||
}, | ||
{ | ||
"name": "Rust app with rustc", | ||
"path": "../templates/dockerfiles/Rust_app_rustc.dockerfile" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Go app", | ||
"installs": [ | ||
{ | ||
"name": "Go app ", | ||
"path": "../templates/dockerfiles/Go_app.dockerfile" | ||
} | ||
] | ||
} | ||
] | ||
|
||
] | ||
}, | ||
{"name":"Angular app", | ||
"installs":[ | ||
{"name":"Angular app with npm","path":"../templates/dockerfiles/Angular_app.dockerfile","ignoreFilePath":"../templates/ignorefiles/Angular_app"}, | ||
{"name":"Angular app with yarn","path":"../templates/dockerfiles/Angular_app_yarn.dockerfile","ignoreFilePath":"../templates/ignorefiles/Angular_app"} | ||
] | ||
}, | ||
{"name":"Rust app", | ||
"installs":[ | ||
{"name":"Rust app with cargo","path":"../templates/dockerfiles/Rust_app_cargo.dockerfile","ignoreFilePath":"../templates/ignorefiles/Rust_app_cargo"}, | ||
{"name":"Rust app with rustc","path":"../templates/dockerfiles/Rust_app_rustc.dockerfile"} | ||
|
||
] | ||
}, | ||
{"name":"Go app", | ||
"installs":[ | ||
{"name":"Go app ","path":"../templates/dockerfiles/Go_app.dockerfile"} | ||
] | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM oven/bun | ||
WORKDIR /usr/src/app | ||
COPY . . | ||
RUN bun i | ||
EXPOSE 3000 | ||
CMD [ "bun", "start" ] |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/node_modules | ||
.gitignore | ||
.gitattributes | ||
LICENSE | ||
README.md |