-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix docker containers adding missing files
Signed-off-by: Antonio Navarro <antnavper@gmail.com>
- Loading branch information
Showing
6 changed files
with
64 additions
and
7 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
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,11 @@ | ||
FROM scratch | ||
COPY . / | ||
FROM busybox | ||
|
||
COPY ./gno /gno | ||
COPY ./examples /gnoroot/examples/ | ||
COPY ./gnovm/stdlibs /gnoroot/gnovm/stdlibs/ | ||
COPY ./gnovm/tests/stdlibs /gnoroot/gnovm/tests/stdlibs/ | ||
|
||
ENV GNOROOT="/gnoroot/" | ||
|
||
ENTRYPOINT [ "/gno" ] | ||
CMD [ "" ] |
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,6 @@ | ||
FROM scratch | ||
FROM busybox | ||
|
||
COPY . / | ||
|
||
ENTRYPOINT [ "/gnokey" ] | ||
CMD [ "" ] |
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,5 +1,13 @@ | ||
FROM scratch | ||
COPY . / | ||
FROM busybox | ||
|
||
COPY ./gnoland /gnoland | ||
COPY ./examples /gnoroot/examples/ | ||
COPY ./gnovm/stdlibs /gnoroot/gnovm/stdlibs/ | ||
COPY ./gno.land/genesis/genesis_balances.txt /gnoroot/gno.land/genesis/genesis_balances.txt | ||
COPY ./gno.land/genesis/genesis_txs.jsonl /gnoroot/gno.land/genesis/genesis_txs.jsonl | ||
|
||
ENV GNOROOT="/gnoroot/" | ||
|
||
EXPOSE 26657 36657 | ||
ENTRYPOINT [ "/gnoland" ] | ||
CMD [ "" ] |
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,5 +1,7 @@ | ||
FROM scratch | ||
FROM busybox | ||
|
||
COPY . / | ||
|
||
EXPOSE 8888 | ||
ENTRYPOINT [ "/gnoweb" ] | ||
CMD [ "" ] |