Skip to content

Commit

Permalink
Skip redundant upgrade step
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Aug 26, 2024
1 parent 4fcefec commit 29a2557
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions builder-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ ENV TZ=Europe/Zurich
# install requirements, install and configure sdkman
# see https://sdkman.io/usage for configuration options
ENV SDKMAN_DIR=/root/.sdkman
RUN apt-get update && apt-get upgrade -y && \
apt-get install -y curl ca-certificates findutils bash && \
RUN apt-get update && \
apt-get install -y software-properties-common && \
apt-get install -y curl ca-certificates zip unzip openssl findutils bash git ssh && \
(curl -fsSL https://deb.nodesource.com/setup_21.x | bash -) && apt-get install -y nodejs && \
curl -s "https://get.sdkman.io" | bash && \
echo "sdkman_auto_answer=true" > $SDKMAN_DIR/etc/config && \
Expand Down

0 comments on commit 29a2557

Please sign in to comment.