Hello,
I would like to run my little julia application on a free cloud machine. Currently I’m using a AWS EC2 t2.micro machine. Unfortunately the micro instance (1GB memory, 1vCPU) fails on precompilation of DataFrames.
Is there something I can do to make the package precompilation consuming less memory (I tried to run julia with -O0, but it didn’t work)?
Or some other solution?
One thing that’s worked for me is to build a docker image on my laptop with my libraries precompiled and use that. See e.g. How to Deploy Docker Containers | AWS