Compare commits

..

2 Commits

Author SHA1 Message Date
Joao P Dubas
cecc59d348 chore(neovim): move from iron.nvim to toggleterm
Usually I use terminal to access `repl` available in a docker container,
or a remote one available in kubernetes or virtual machine.
2023-10-29 20:45:43 +00:00
e9d47a7fcd chore: add openssl 1.1 shared lib (#7)
This version of `openssl` is needed to compile older versions of `erlang`.

Reviewed-on: #7
2023-10-29 20:45:20 +00:00

View File

@ -174,3 +174,16 @@ RUN ${XDG_DATA_HOME}/rtx/bin/rtx plugins install \
kubectl \ kubectl \
poetry \ poetry \
terraform terraform
# configure openssl 1.1
# this is needed to compile older erlang versions
# example: KERL_CONFIGURE_OPTIONS="-with-ssl=${HOME}/.local/lib/ssl" asdf install
RUN mkdir -p ${HOME}/.local/src \
&& cd ${HOME}/.local/src \
&& wget https://www.openssl.org/source/openssl-1.1.1m.tar.gz \
&& tar -xzf openssl-1.1.1m.tar.gz \
&& cd openssl-1.1.1m \
&& ./config --prefix=${HOME}/.local/lib/ssl --openssldir=${HOME}/.local/lib/ssl shared zlib \
&& make \
# && make test \
&& make install