-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make TravisCI auto-build Linux executables.
- Loading branch information
Showing
4 changed files
with
24 additions
and
66 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,11 +1,10 @@ | ||
FROM alpine:latest | ||
FROM scratch | ||
|
||
MAINTAINER Nikyle Nguyen <[email protected]> | ||
MAINTAINER Vidar Holen <[email protected]> | ||
|
||
COPY package/bin/shellcheck /usr/local/bin/ | ||
COPY package/lib/ /usr/local/lib/ | ||
|
||
RUN ldconfig /usr/local/lib | ||
# This file assumes ShellCheck has already been built. | ||
# See https://github.com/koalaman/scbuilder | ||
COPY shellcheck / | ||
|
||
WORKDIR /mnt | ||
ENTRYPOINT ["shellcheck"] | ||
ENTRYPOINT ["/shellcheck"] |
This file was deleted.
Oops, something went wrong.