-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch to ubuntu instance and install dependencies
- Loading branch information
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
FROM node:12-alpine | ||
FROM node:12 | ||
|
||
RUN apk update && \ | ||
apk upgrade && \ | ||
apk --no-cache add util-linux git autoconf \ | ||
g++ gcc libgcc libstdc++ linux-headers make python && \ | ||
rm -rf /var/cache/apk/* | ||
RUN apt-get update && \ | ||
apt-get upgrade && \ | ||
apt-get install -y libglu1 build-essential && \ | ||
apt-get clean | ||
|
||
RUN npm i --unsafe-perm -g [email protected] | ||
|
||
|