|
@@ -10,6 +10,9 @@ RUN apt-get update && apt-get install -y \
|
|
|
gnupg \
|
|
|
lsb-release
|
|
|
|
|
|
+RUN apt-get install -y \
|
|
|
+ g++ gcc make python
|
|
|
+
|
|
|
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
|
|
|
|
|
|
RUN echo \
|
|
@@ -20,8 +23,9 @@ RUN apt-get update
|
|
|
RUN apt-get install -y docker-ce docker-ce-cli containerd.io
|
|
|
|
|
|
# Install node
|
|
|
-RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
|
|
|
+RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -
|
|
|
RUN apt-get install -y nodejs
|
|
|
+RUN npm install --quiet node-gyp -g
|
|
|
|
|
|
# Install docker-compose
|
|
|
RUN curl -L "https://github.com/docker/compose/releases/download/v2.5.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
|