Skip to content

Commit

Permalink
More labs-cli deps
Browse files Browse the repository at this point in the history
  • Loading branch information
lrakai committed Nov 13, 2023
1 parent de66c70 commit 8023691
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -125,19 +125,14 @@ RUN sudo apt-get install -y imagemagick

## nvm, node
ARG NODE_VERSION=20.9.0
RUN curl -L https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh -o /tmp/install.sh && \
bash /tmp/install.sh && \
source /home/coder/.bashrc && \
rm /tmp/install.sh && \
nvm install v${NODE_VERSION}
RUN curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash

## title-cli
RUN npm install -g @jarmentor/title-cli
RUN PATH=$PATH:/home/coder/.nvm/versions/node/v20.9.0/bin/ && npm install -g @jarmentor/title-cli

## AWS CLI
ARG AWS_CLI_VERSION=2.13.33
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-$AWS_CLI_VERSION.zip" -o "/tmp/awscliv2.zip" \
# && sudo mkdir -p /tmp \
&& sudo unzip /tmp/awscliv2.zip -d /tmp \
&& sudo /tmp/aws/install

Expand Down

0 comments on commit 8023691

Please sign in to comment.