-
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add riscv64 support to docker builds
* Adjust GitHub CI to also build for riscv64 * Update base Ubuntu base for build from 18.04 LTS to 20.04 LTS as to support riscv64 * Minor: Exclude idea IDE files from git
- Loading branch information
Showing
4 changed files
with
5 additions
and
3 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 +1,3 @@ | ||
# Ignoring IDE-specific files | ||
.idea/* | ||
.vscode |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ WORKDIR /build/ | |
COPY build.sh VERSION /build/ | ||
RUN bash build.sh | ||
|
||
FROM ubuntu:bionic | ||
FROM ubuntu:focal | ||
LABEL maintainer="Xiaonan Shen <[email protected]>" | ||
|
||
EXPOSE 25/tcp | ||
|