Skip to content

Commit

Permalink
docker: fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Dec 26, 2023
1 parent ff85b7a commit a93cdb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/docker/template/Dockerfile.full.header
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN apt-get update && apt-get -y install \
apt-get -y upgrade

ARG NODE_VERSION=18
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_"$NODE_VERSION".x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
RUN apt-get update && apt-get install -y nodejs

# python native
Expand Down

0 comments on commit a93cdb0

Please sign in to comment.