Skip to content

Commit

Permalink
preinstall gvm
Browse files Browse the repository at this point in the history
  • Loading branch information
gregnuj committed Sep 25, 2023
1 parent 841d110 commit 578ac6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ RUN set -eu &&\
SHELL [ "/bin/bash", "-c" ]

# install gvm
RUN set -ex && \
RUN set -e && \
/bin/bash < <(curl -sSL https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer) && \
source ${HOME}/.gvm/scripts/gvm && \
for version in 1.18, 1.19, 1.20; do \
gvm install go${version}; \
for version in 1.18 1.19 1.20; do \
gvm install "go${version}"; \
done

COPY ./bin/install-mimalloc ./bin/install-wasmvm /usr/local/bin/
Expand Down

0 comments on commit 578ac6c

Please sign in to comment.