fusillicode
Hi ![]()
I’m having an hard times trying to figure out “the best” way to build a “simple” Elixir script (or task) that should run scheduled by a k8s job.
I know that Elixir doesn’t actually address this kind of use cases but I would really like use it considering the great experience I had in the past.
I’ve already implemented some tasks (mix tasks) to accomplish some data transformations with Flow & other libs and I would really love to replicate the experience but in a containerized environment.
The task that I need to implement would need to fetch some data from some REST APIs, query a DB and save some info inside it. So I’ll have a few dependencies to libs like postgrex & httpoison.
Is there an easy way to accomplish what I have in mind? ![]()
Thanks in advance to everyone ![]()
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 10 of 10 Posts
OvermindDL1
One you have an escript the Dockerfile should be as simple as just
FROMan existing elixir docker, adding the file to it, and setting it as theentrypoint, pretty much the same as any normal docker runner.Just doing a full proper release with distillery and having it make the docker for you is good too, plus then you get dependencies!
fusillicode
Thanks a lot for the support
You’re totally right, but the tricky part is also that I want to build the escript directly inside the container to make it totally dependent to it so that I can share just the built image.
Right now I’ve managed to accomplish something with the following Dockerfile but I’m sincerely not sure about the
COPY . .NobbZ
A good first step, now it’s time to make it multistage to squeeze the very last byte out of it.
fusillicode
@NobbZ that is the main goal & concern!
Actually, I’ve also another big concern about the possibility to use libs like Flow inside my script
NobbZ
After
mix build.escript(or whatever that task was named), the escript should be self-contained (except for Erlang).OvermindDL1
All easily done and in fact should be done by the Dockerfile itself.
Honestly at that point I wouldn’t
COPYanything in but rather have itgit clone ...and etc… to build it all inside it in full.You could even wipe the content you don’t need from it when done to minimize size if you want.
fusillicode
Got it.
One last (I hope) concern…I’m just trying (almost live) to pass ENV vars both by building & running the script locally on my machine & through docker.
Unfortunately, as I expected, their not properly evaluated.
P.S: I’m just trying to find the post that describe the issue with ENV and compilation that I’ve read just a little while ago
sneako
I have only deployed one escript in a docker container in the past, and to get around this issue of reading from ENV, I included a bash script, which was used as the docker entry point, and in this bash script I call the escript passing in any env vars the script needs as arguments like
./my_script --env-var $MY_ENV_VAR.However, I suspect the forum may provide us with a better way
fusillicode
Got it but unfortunately I don’t think that a solution like the one you’re suggesting would fit my needs
I’ve quite a lot ENV vars that I need to pass to my script, mainly DB related stuff as well as some REST API config.
Just for you to know I’m actually trying to use the
ENV RELX_REPLACE_OS_VARS=trueinside my build and then get the vars out withSystem.get_env("VAR")but right now I didn’t had any successI’ve also tried to use
Mix.Configbut considering that I don’t have an application running but only a simple script it seems that it would not fit my needs either.NobbZ
In an escript you can simply read the os-environment and write to the app-environment. There shouldn’t be any issues.