-
Notifications
You must be signed in to change notification settings - Fork 349
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
Showing
5 changed files
with
30 additions
and
20 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,3 +1,4 @@ | ||
**/target/ | ||
**/node_modules/ | ||
.git | ||
Dockerfile |
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,14 +11,6 @@ inputs: | |
runs: | ||
using: "composite" | ||
steps: | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup Variables | ||
shell: bash | ||
run: | | ||
echo "CARGO_INCREMENTAL=0" >> $GITHUB_ENV | ||
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV | ||
echo "SCCACHE_CACHE_SIZE=100GB" >> $GITHUB_ENV | ||
- name: Build moonbeam | ||
shell: bash | ||
run: | | ||
|
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 @@ | ||
# Node for Moonbeam | ||
# Production Node for Moonbeam | ||
# | ||
# Requires to run from repository root and to copy the binary in the build folder (part of the release workflow) | ||
|
||
|
@@ -50,7 +50,7 @@ RUN cargo build --profile=production --all | |
|
||
FROM debian:stable-slim | ||
LABEL maintainer="[email protected]" | ||
LABEL description="Binary for Moonbeam Nodes" | ||
LABEL description="Production Binary for Moonbeam Nodes" | ||
|
||
RUN useradd -m -u 1000 -U -s /bin/sh -d /moonbeam moonbeam && \ | ||
mkdir -p /moonbeam/.local/share && \ | ||
|