-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding oak-rebuild bin, electron upgrade
- Loading branch information
1 parent
48824e0
commit 5c0da24
Showing
12 changed files
with
171 additions
and
563 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
v8.11.3 |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash -e | ||
|
||
echo "" | ||
echo "Rebuilding node modules at $1" | ||
echo "" | ||
|
||
ELECTRON_VERSION=${ELECTRON_VERSION:=$(oak version electron)} | ||
|
||
pushd $1 | ||
export npm_config_target=$ELECTRON_VERSION | ||
export npm_config_runtime=electron | ||
export npm_config_arch=x64 | ||
export npm_config_target_arch=x64 | ||
export npm_config_disturl=https://atom.io/download/electron | ||
|
||
npm rebuild | ||
popd | ||
|
||
echo "" | ||
echo "Finished rebuilding native modules" |
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,4 +1,4 @@ | ||
FROM oaklabs/oak:4.2.4 | ||
FROM oaklabs/oak:4.3.0 | ||
|
||
WORKDIR /app | ||
COPY . /app | ||
|
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,4 +1,4 @@ | ||
FROM oaklabs/oak:4.2.4 | ||
FROM oaklabs/oak:4.3.0 | ||
|
||
WORKDIR /app | ||
COPY . /app | ||
|
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,14 +1,14 @@ | ||
image: oaklabs/oak:4.2.4 | ||
image: oaklabs/oak:4.3.0 | ||
manifests: | ||
# - image: oaklabs/oak:4.2.4-arm | ||
# - image: oaklabs/oak:4.3.0-arm | ||
# platform: | ||
# architecture: arm | ||
# os: linux | ||
# - image: oaklabs/oak:4.2.4-arm64 | ||
# - image: oaklabs/oak:4.3.0-arm64 | ||
# platform: | ||
# architecture: arm64 | ||
# os: linux | ||
- image: oaklabs/oak:4.2.4-amd64 | ||
- image: oaklabs/oak:4.3.0-amd64 | ||
platform: | ||
architecture: amd64 | ||
os: linux |
Oops, something went wrong.