We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f50455 commit 74a02d0Copy full SHA for 74a02d0
2 files changed
Dockerfile
@@ -27,10 +27,10 @@ RUN \
27
28
# Install ASDF to install custom tools
29
ARG ASDF_VERSION=0.11.3
30
-RUN bash -c "git clone https://github.com/asdf-vm/asdf.git $HOME/.asdf --branch v${ASDF_VERSION} && \
+RUN bash -c "git clone https://github.com/asdf-vm/asdf.git /asdf --branch v${ASDF_VERSION} && \
31
echo 'legacy_version_file = yes' > $HOME/.asdfrc && \
32
printf 'yarn\njsonlint' > $HOME/.default-npm-packages && \
33
- . $HOME/.asdf/asdf.sh && \
+ . /asdf/asdf.sh && \
34
asdf plugin add ruby https://github.com/asdf-vm/asdf-ruby.git && \
35
asdf install ruby 3.2.2 && \
36
asdf global ruby 3.2.2 && \
entrypoint.sh
@@ -1,5 +1,5 @@
1
#!/bin/bash
2
3
-. $HOME/.asdf/asdf.sh
+. /asdf/asdf.sh
4
5
exec /init "$@"
0 commit comments