Merge pull request #54 from internetee/fix-asdf-install

Fix asdf install in dockerfile
This commit is contained in:
Alex Sherman 2021-12-06 13:16:53 +05:00 committed by GitHub
commit 99b714676b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ RUN apt-get update && apt-get install -y \
# USER asdf
# WORKDIR /asdf
RUN git clone https://github.com/asdf-vm/asdf.git "$HOME"/.asdf && \
RUN git clone https://github.com/asdf-vm/asdf.git --branch v0.6.3 "$HOME"/.asdf && \
echo '. $HOME/.asdf/asdf.sh' >> "$HOME"/.bashrc && \
echo '. $HOME/.asdf/asdf.sh' >> "$HOME"/.profile