-
-
Notifications
You must be signed in to change notification settings - Fork 952
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into simple-calculator
- Loading branch information
Showing
39 changed files
with
782 additions
and
479 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 |
---|---|---|
|
@@ -11,6 +11,7 @@ RUN apt-get update -qq \ | |
make \ | ||
python3 \ | ||
python3-pip \ | ||
python3-pil \ | ||
tar \ | ||
unzip \ | ||
wget \ | ||
|
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
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
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
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,21 +1,28 @@ | ||
FROM ubuntu:22.04 | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
ARG NODE_MAJOR=20 | ||
RUN apt-get update -qq \ | ||
&& apt-get install -y ca-certificates curl gnupg \ | ||
&& mkdir -p /etc/apt/keyrings \ | ||
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ | ||
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \ | ||
&& apt-get update -qq \ | ||
&& apt-get install -y \ | ||
# x86_64 / generic packages | ||
bash \ | ||
build-essential \ | ||
cmake \ | ||
git \ | ||
make \ | ||
nodejs \ | ||
python3 \ | ||
python3-pip \ | ||
python3-pil \ | ||
python-is-python3 \ | ||
tar \ | ||
unzip \ | ||
wget \ | ||
curl \ | ||
# aarch64 packages | ||
libffi-dev \ | ||
libssl-dev \ | ||
|
@@ -28,8 +35,6 @@ RUN apt-get update -qq \ | |
libpango-1.0-0 \ | ||
ibpango1.0-dev \ | ||
libpangocairo-1.0-0 \ | ||
&& curl -sL https://deb.nodesource.com/setup_18.x | bash - \ | ||
&& apt-get install -y nodejs \ | ||
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*; | ||
|
||
# Git needed for PROJECT_GIT_COMMIT_HASH variable setting | ||
|
@@ -39,10 +44,6 @@ RUN pip3 install -Iv cryptography==3.3 | |
RUN pip3 install cbor | ||
RUN npm i [email protected] -g | ||
|
||
RUN npm i [email protected] -g | ||
RUN npm i @swc/core -g | ||
RUN npm i [email protected] -g | ||
|
||
# build.sh knows how to compile | ||
COPY build.sh /opt/ | ||
|
||
|
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
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
Oops, something went wrong.