We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8ea861 commit eda9367Copy full SHA for eda9367
base/Dockerfile.linux
@@ -1,5 +1,14 @@
1
FROM ubuntu:latest
2
3
+RUN curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
4
+
5
+RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
6
+RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
7
8
RUN apt-get update && apt-get install -y \
9
unzip \
- zip
10
+ zip \
11
+ git \
12
+ curl \
13
+ nodejs \
14
+ yarn
0 commit comments