Skip to content

Commit

Permalink
chore: upgrade base image: update nodejs: run apt-get update before i…
Browse files Browse the repository at this point in the history
…nstallation
  • Loading branch information
nwittstruck committed Dec 29, 2023
1 parent 739daef commit dbf8df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg -
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list

# install build dependencies
RUN apt-get install -y nodejs \
RUN apt-get update && apt-get install -y nodejs \
build-essential \
inotify-tools \
postgresql-client \
Expand Down

0 comments on commit dbf8df3

Please sign in to comment.