-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1236ab
commit 7338ffc
Showing
2 changed files
with
13 additions
and
13 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
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,18 +1,18 @@ | ||
FROM ubuntu:bionic | ||
FROM ubuntu:focal | ||
|
||
# cross compile stuff | ||
RUN apt-get update &&\ | ||
apt-get install -y gcc-mingw-w64 gcc-5-arm-linux-gnueabihf gcc-i686-linux-gnu &&\ | ||
apt-get install -y software-properties-common git | ||
# for tzdata | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# go stuff | ||
RUN add-apt-repository ppa:longsleep/golang-backports &&\ | ||
apt-get update &&\ | ||
apt-get install -y golang-go | ||
RUN apt-get update | ||
|
||
# cross compile and go stuff | ||
RUN apt-get install -y gcc-mingw-w64 gcc-8-arm-linux-gnueabihf gcc-i686-linux-gnu &&\ | ||
apt-get install -y software-properties-common git golang-go | ||
|
||
# TODO: move this to a separate package.json and docker container | ||
# jshint | ||
RUN apt-get install -y nodejs npm | ||
RUN npm install -g jshint | ||
RUN npm install -g jshint@2.12.0 | ||
|
||
# rollup | ||
RUN npm install -g rollup | ||
RUN npm install -g rollup@2.35.1 |