-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create the CI images in different job units to work around image size issues.
- Loading branch information
Showing
4 changed files
with
50 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
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,15 +1,15 @@ | ||
FROM clearlinux:latest | ||
ARG clear_ver | ||
|
||
# Configure Go | ||
ENV GOPATH /home/clr/go | ||
ENV PATH="/home/clr/go/bin:${PATH}" | ||
|
||
# Update and add bundles | ||
RUN swupd update && \ | ||
RUN swupd update -V $clear_ver && \ | ||
swupd bundle-add mixer go-basic c-basic os-core-update-dev sudo && \ | ||
useradd -G wheelnopw clr && \ | ||
mkdir -p /run/lock | ||
USER clr | ||
RUN git config --global user.email "[email protected]" && \ | ||
git config --global user.name "Travis CI" | ||
|