Skip to content

Commit

Permalink
Merge pull request #4 from jpwhite3/develop
Browse files Browse the repository at this point in the history
Update Dockerfile
  • Loading branch information
jpwhite3 authored May 16, 2024
2 parents 1b6ee16 + 2e14df6 commit 6e75a32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ RUN \

# GO installation
RUN \
curl -OL https://go.dev/dl/go1.21.5.linux-amd64.tar.gz \
&& tar -C /usr/local -xvf go1.21.5.linux-amd64.tar.gz \
curl -OL https://go.dev/dl/go1.22.3.linux-amd64.tar.gz \
&& tar -C /usr/local -xvf go1.22.3.linux-amd64.tar.gz \
&& ln -s /usr/local/go/bin/go /usr/bin/go

# Node installation with nvm
ENV NODE_VERSION lts/iron
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash \
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash \
&& . ~/.nvm/nvm.sh \
&& nvm install $NODE_VERSION \
&& nvm alias default $NODE_VERSION \
Expand Down

0 comments on commit 6e75a32

Please sign in to comment.