-
Notifications
You must be signed in to change notification settings - Fork 679
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Gleam]: first attempt to add Gleam. #8016
Conversation
@@ -0,0 +1,18 @@ | |||
{{#language.image}} | |||
FROM gleamlang/gleam |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a maintained version of a docker image ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to me to be the one. Or maybe we should copy this https://github.com/gleam-lang/example-todomvc/blob/main/Dockerfile
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to https://github.com/gleam-lang/gleam/pkgs/container/gleam it should be
FROM gleamlang/gleam | |
FROM ghcr.io/gleam-lang/gleam:v1.6.3-elixir |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or maybe
FROM ghcr.io/gleam-lang/gleam:v1.6.3-erlang
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wish somebody using gleam would give us hints
FROM gleamlang/gleam | ||
{{/language.image}} | ||
{{^language.image}} | ||
FROM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
???
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My mistake. Sorry.
@@ -0,0 +1,7 @@ | |||
framework: | |||
website: https://github.com/rawhat/mist | |||
version: "3.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version: "3.0.0" | |
version: 3.0 |
@@ -0,0 +1,7 @@ | |||
framework: | |||
website: https://github.com/rawhat/mist |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
website: https://github.com/rawhat/mist | |
github: rawhat/mist |
@@ -0,0 +1,18 @@ | |||
{{#language.image}} | |||
FROM gleamlang/gleam |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or maybe
FROM ghcr.io/gleam-lang/gleam:v1.6.3-erlang
[dependencies] | ||
gleam_stdlib = ">= 0.34.0 and < 2.0.0" | ||
mist = ">= 3.0.0 and < 4.0.0" | ||
gleam_erlang = ">= 0.32.0 and < 1.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gleam_stdlib = ">= 0.34.0 and < 2.0.0" | ||
mist = ">= 3.0.0 and < 4.0.0" | ||
gleam_erlang = ">= 0.32.0 and < 1.0.0" | ||
gleam_http = ">= 3.7.1 and < 4.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mist = ">= 3.0.0 and < 4.0.0" | ||
gleam_erlang = ">= 0.32.0 and < 1.0.0" | ||
gleam_http = ">= 3.7.1 and < 4.0.0" | ||
gleam_otp = ">= 0.14.1 and < 1.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gleam_otp = ">= 0.14.1 and < 1.0.0" | ||
|
||
[dev-dependencies] | ||
gleeunit = ">= 1.0.0 and < 2.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
needed ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe for testing
gleam/tmist/manifest.toml
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could not this be generated onto containers ? I mean using bootstrap
config option
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no idea
Co-authored-by: Marwan Rabbâa <[email protected]>
I suggest to wait until sunday, and merge nomatter what + ping any gleam contributor to make sure this is a correct implementation |
Initial work for #7386