Skip to content

Commit eda9367

Browse files
committed
feat: add node/yarn to base linux image
1 parent b8ea861 commit eda9367

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

base/Dockerfile.linux

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
FROM ubuntu:latest
22

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+
38
RUN apt-get update && apt-get install -y \
49
unzip \
5-
zip
10+
zip \
11+
git \
12+
curl \
13+
nodejs \
14+
yarn

0 commit comments

Comments
 (0)