We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 729584d + f4deb08 commit 5a51aaeCopy full SHA for 5a51aae
docker/app/Dockerfile
@@ -16,7 +16,9 @@ RUN apt-get -y update && \
16
RUN curl -Lo /usr/bin/composer https://getcomposer.org/composer-stable.phar && \
17
chmod +x /usr/bin/composer
18
19
-RUN curl -sL https://deb.nodesource.com/setup_16.x | bash && \
+ARG NODE_VERSION=16
20
+
21
+RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash && \
22
apt-get install -y nodejs
23
24
ARG CONTAINER_USER
0 commit comments