fix(seacogs): docker image should actually build now
Some checks failed
Docker Build / Build (push) Failing after 7s
Some checks failed
Docker Build / Build (push) Failing after 7s
This commit is contained in:
parent
4f0f0955d9
commit
e19b3584e8
1 changed files with 3 additions and 3 deletions
|
@ -14,9 +14,9 @@ RUN apt-get install -y \
|
|||
|
||||
# Install Nodejs
|
||||
|
||||
RUN apt-get install -y ca-certificates curl gnupg \
|
||||
mkdir -p /etc/apt/keyrings \
|
||||
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
||||
RUN apt-get install -y ca-certificates curl gnupg
|
||||
RUN mkdir /etc/apt/keyrings
|
||||
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
||||
RUN export NODE_MAJOR=12
|
||||
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_${NODE_MAJOR}.x focal main" | sudo tee /etc/apt/sources.list.d/nodesource.list > /dev/null
|
||||
RUN apt-get update && apt-get install -y nodejs
|
||||
|
|
Loading…
Reference in a new issue